]
Lucia Jelinkova closed JBIDE-20222.
-----------------------------------
Verified JBT 4.3.0 CR1a
"Create Deployment Method" gets confused when dependent is
a Inner Type
-----------------------------------------------------------------------
Key: JBIDE-20222
URL:
https://issues.jboss.org/browse/JBIDE-20222
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: arquillian
Affects Versions: 4.3.0.Beta1
Reporter: Aslak Knutsen
Assignee: Snjezana Peco
Fix For: 4.3.0.CR1
Attachments: inner_type_issue.png
When adding a class that depends on a Inner Class the generate deployment logic tries to
add it twice;
* Once as the parent Type
* Once as the Inner Type
But it still warns that the Inner Type is not included in the Deployment.
!inner_type_issue.png!
In this case Type is a Enum in Target:
{code}
public class Target {
public static enum Type {
Remote, Managed, Embedded
}
}
{code}