// File foo.java
void SomeOp(int a,
String name)
{
}
|
|
Reverser Notes: When reverse engineering a attribute's data type:
• If the data type is modeled in the Model or is going to be reverse engineered to the Model, the Parameter's Data Type references the appropriate item.
• If the data type is not modeled in the Model and is not going to be reverse engineered to the Model, the Parameter's Data Type is set to the name of the data type (as text).
|
public void func(final int foo)
{
}
public int sum(int first,
int second)
{
return first +second;
}
|
|
ACS may modify the parameter name that is added to the code to make it valid for Java. You can specify the exact parameter name to add to the code through the CODE_GENERATION_NAME property of a Parameter. Tell me more...
|
void foo(char [] name);
|
|
Reverser Notes: When reverse engineering parameters, the Reverser reverse engineers array specifications to the tagged value of the Java Array Spec tag definition.
|
void op(String name, String ... otherDetails)
{
}
public class foo
{
public bar myBar;
protected thing myThang;
}