|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
1 fsaInterface 0..1 LogicUnparseInterface ---------------------------- FSAInterface logic fsaInterface
Method Summary | |
FSAInterface |
getFSAInterface()
use code below for implementation
private FSAInterface fsaInterface = null;
public synchronized FSAInterface getFSAInterface ()
{
if (this.fsaInterface == null)
{
this.fsaInterface=new FSAInterface(this);
}
return this.fsaInterface;
}
or let this method return null if you do not want any unparsing and fsa stuff.
|
java.lang.String |
getUnparseModuleName()
This Method should return the fully qualified Class name to the appropriate UnparseInterface subclass that is to be used for unparsing. |
Methods inherited from interface de.upb.tools.pcs.PropertyChangeInterface |
getPropertyChangeSupport |
Method Detail |
public FSAInterface getFSAInterface()
private FSAInterface fsaInterface = null;
public synchronized FSAInterface getFSAInterface ()
{
if (this.fsaInterface == null)
{
this.fsaInterface=new FSAInterface(this);
}
return this.fsaInterface;
}
or let this method return null if you do not want any unparsing and fsa stuff.
IMPORTANT: This method should always return the same FSAInterface for the whole lifetime of the LogicUnparseInterface!
public java.lang.String getUnparseModuleName()
If you do not need any special conversions use code below for implementation.
That will return the qualified class name of this LogicUnparseInterface with "unparse"
appended to the package name and the class name prefixed with "UM".
So pack.age.name.ClassName
will become pack.age.name.unparse.UMClassName
.
This is the (expected) default location for the UnparseInterface
private String unparseModuleName = null;
public String getUnparseModuleName ()
{
if (this.unparseModuleName == null)
{
this.unparseModuleName=UnparseManager.get().getUnparseModuleName(this);
}
return this.unparseModuleName;
}
or let this method return null if you do not want any unparsing and fsa stuff.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |