Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source to model will not be working if there's existing field (only changing the type of field, that change will be ignored) #104

Open
jinyoung opened this issue Mar 24, 2018 · 0 comments

Comments

@jinyoung
Copy link
Member

#java-reverse/Application.java

                //update to model
                for (BodyDeclaration<?> member : members) {
                    if (member instanceof FieldDeclaration) {
                        FieldDeclaration field = (FieldDeclaration) member;

                        if (field.getVariables().size() > 0) {
                            VariableDeclarator variableDeclarator = field.getVariables().get(0);
                            if (!modelFieldManifest.contains(variableDeclarator.getName().getIdentifier())) {

                                Attribute attribute = new Attribute();
                                attribute.setName(variableDeclarator.getName().getIdentifier());
                                attribute.setClassName(variableDeclarator.getType().getElementType().asString());

                                classDefinition.addFieldDescriptor(attribute);

                            }
                        }

                    }
                }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant