protected SCInterfaceImpl ___nterface; //underlines, instead of "sCI"
(...)
public SCInterface getSCInterface() {
return sCInterface; //naming is right here
}
vs old:
protected SCInterfaceImpl sCInterface;
(...)
public SCInterface getSCInterface() {
return sCInterface;
}
Same issue (Underlines instead of letters) appears in the port state enumeration.
code generated:
protected SCInterfaceImpl ___nterface; //underlines, instead of "sCI" (...) public SCInterface getSCInterface() { return sCInterface; //naming is right here }
vs old: protected SCInterfaceImpl sCInterface; (...) public SCInterface getSCInterface() { return sCInterface; }
Same issue (Underlines instead of letters) appears in the port state enumeration.