Package org.jibx.binding.def
Class NestedCollection.IteratorLoad
java.lang.Object
org.jibx.binding.def.NestedCollection.CollectionBase
org.jibx.binding.def.NestedCollection.CollectionLoad
org.jibx.binding.def.NestedCollection.IteratorLoad
- Enclosing class:
NestedCollection
Collection item load strategy for collection with items accessed by
iterator or enumeration.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionIteratorLoad(ClassItem iter, boolean doubword, String more, String next) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidGenerate code to clean up after loading items from collection.protected voidGenerate code to initialize collection for loading items.protected BranchWrapperGenerate code to load next item from collection.Methods inherited from class org.jibx.binding.def.NestedCollection.CollectionBase
appendPOP, appendSWAP
-
Field Details
-
m_iterMethod
Method used to get iterator for collection. -
m_moreName
Fully qualified method name to test if more in iteration. -
m_nextName
Fully qualified method name to get next item in iteration.
-
-
Constructor Details
-
IteratorLoad
Constructor.- Parameters:
iter- method to get iterator or enumerator from collectiondoubword- double word value flagmore- fully qualified method name to test if more in iterationnext- fully qualified method name to get next item in iteration
-
-
Method Details
-
genLoadInit
Description copied from class:NestedCollection.CollectionLoadGenerate code to initialize collection for loading items. This generates the necessary code for handling the initialization. It must be called before attempting to call theNestedCollection.CollectionLoad.genLoadItem(org.jibx.binding.classes.ContextMethodBuilder)method. The base class implementation does nothing.- Overrides:
genLoadInitin classNestedCollection.CollectionLoad- Parameters:
mb- method builder- Throws:
JiBXException- if error in configuration
-
genLoadItem
Description copied from class:NestedCollection.CollectionLoadGenerate code to load next item from collection. This generates the necessary code for handling the load operation, leaving the item on the stack. TheNestedCollection.CollectionLoad.genLoadInit(org.jibx.binding.classes.ContextMethodBuilder)method must be called before calling this method, and theNestedCollection.CollectionLoad.genLoadDone(org.jibx.binding.classes.ContextMethodBuilder)method must be called after the last call to this method. This method must be overridden by each subclass.- Specified by:
genLoadItemin classNestedCollection.CollectionLoad- Parameters:
mb- method builder- Returns:
- branch wrapper for case of done with collection
- Throws:
JiBXException- if error in configuration
-
genLoadDone
Description copied from class:NestedCollection.CollectionLoadGenerate code to clean up after loading items from collection. This generates the necessary code for handling the clean up. It must be called after the last call toNestedCollection.CollectionLoad.genLoadItem(org.jibx.binding.classes.ContextMethodBuilder). The base class implementation does nothing.- Overrides:
genLoadDonein classNestedCollection.CollectionLoad- Parameters:
mb- method builder- Throws:
JiBXException- if error in configuration
-