Package jadex.xml
Class LinkingInfo
- java.lang.Object
- 
- jadex.xml.LinkingInfo
 
- 
 public class LinkingInfo extends java.lang.ObjectThe link info stores how parent - child(ren) should be composed. Bulk mode means that linking is invoked only after all children have been collected.
- 
- 
Field SummaryFields Modifier and Type Field Description protected booleanbulklinkThe link mode (determined by the linker if present).static booleanDEFAULT_BULKLINK_MODEDefault link mode.protected java.lang.ObjectlinkerThe linker.
 - 
Constructor SummaryConstructors Constructor Description LinkingInfo(boolean bulklink)Create a new linking info.LinkingInfo(java.lang.Object linker)Create a new linking info.LinkingInfo(java.lang.Object linker, boolean bulklink)Create a new linking info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetLinker()Get the linker.booleanisBulkLink()Get the bulklink.java.lang.StringtoString()Get the string representation.
 
- 
- 
- 
Field Detail- 
DEFAULT_BULKLINK_MODEpublic static final boolean DEFAULT_BULKLINK_MODE Default link mode.- See Also:
- Constant Field Values
 
 - 
linkerprotected java.lang.Object linker The linker.
 - 
bulklinkprotected boolean bulklink The link mode (determined by the linker if present).
 
- 
 - 
Method Detail- 
getLinkerpublic java.lang.Object getLinker() Get the linker.- Returns:
- The linker.
 
 - 
isBulkLinkpublic boolean isBulkLink() Get the bulklink.- Returns:
- The bulklink.
 
 - 
toStringpublic java.lang.String toString() Get the string representation.- Overrides:
- toStringin class- java.lang.Object
- Returns:
- The string representation.
 
 
- 
 
-