Class AbstractDeferredCursor
- java.lang.Object
- 
- com.inductiveautomation.ignition.designer.findreplace.SearchObjectCursor
- 
- com.inductiveautomation.ignition.designer.findreplace.AbstractDeferredCursor
 
 
- 
- Direct Known Subclasses:
- AbstractJsonCursor,- ActionCursor,- ComponentSearchCursor,- PermissionsCursor,- PropertyConfigCursor,- ScriptCursor,- ViewSearchCursor
 
 public abstract class AbstractDeferredCursor extends SearchObjectCursor Simple cursor implementation defers initialization until it begins being iterated through
- 
- 
Constructor SummaryConstructors Constructor Description AbstractDeferredCursor()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidaddSearchCursor(SearchObjectCursor cursor)protected voidaddSearchObject(SearchObject searchObject)protected abstract voidinitialize()Add your search cursors and objects herejava.lang.Objectnext()Gets the next search object, which might be a SearchObject or a SearchObjectCursor.- 
Methods inherited from class com.inductiveautomation.ignition.designer.findreplace.SearchObjectCursorof
 
- 
 
- 
- 
- 
Method Detail- 
initializeprotected abstract void initialize() Add your search cursors and objects here
 - 
nextpublic java.lang.Object next() Description copied from class:SearchObjectCursorGets the next search object, which might be a SearchObject or a SearchObjectCursor. Null is returned at the end of the stream to signify that the cursor is exhausted.- Specified by:
- nextin class- SearchObjectCursor
 
 - 
addSearchObjectprotected void addSearchObject(SearchObject searchObject) 
 - 
addSearchCursorprotected void addSearchCursor(SearchObjectCursor cursor) 
 
- 
 
-