[
https://issues.jboss.org/browse/ROASTER-10?page=com.atlassian.jira.plugin...
]
Jeremie Bresson commented on ROASTER-10:
----------------------------------------
I agree with @George Gastaldi, this is more a Roaster-JDT issue than a Roaster-API issue.
The Roaster-JDT should solve the import conflicts when new types are added to the class.
This feature would be in particular useful when you have 2 classes with the same name in 2
different packages. Example:
* {{com.company.example.old.SomeClass}} (annotated with {{@Deprecated}})
* {{com.company.example.new.SomeClass}}
This could be result of a refactoring work, where a class has been moved from one package
to another, but in order to keep your API the old class is still present and marked as
deprecated.
Auto generated imports when a field type is set causes .java file to
not compile.
---------------------------------------------------------------------------------
Key: ROASTER-10
URL:
https://issues.jboss.org/browse/ROASTER-10
Project: Roaster
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: API
Affects Versions: 2.2.0.Final
Reporter: Walter Medvedeo
When we set the Type for a given field using the FieldSource.setType( X ) methods an
import is generated automatically.
Under some situations it causes the resulting class to not compile and it's not
posible to fix it using the api.
In order to avoid this, and also to be able to modify a given class in a more "safe
or controlled" way (for example in cases when we don't want to manage complex
refactorings or controlling imports), It's desirable to have setType( X, boolean
addImports) method that just change the field type to the provided type name and don't
add imports.
e.g:
Given the following declaration:
private org.test.Class1 myField;
myField.setType("org.somepackage.Class2", false)
will produce the following result:
private org.somepackage.Class2 myField;
and:
myField.setType("Class2", false)
will produce the following result:
private Class2 myField.
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)