Interface IFactoryList
-
- All Superinterfaces:
com4j.Com4jObject
,IList
,java.lang.Iterable<com4j.Com4jObject>
- All Known Subinterfaces:
IHierarchySupportList
public interface IFactoryList extends IList
Services to create and maintains lists within entity factories. Use any factory object to create any number of list instances for objects in the factory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IList
fields()
Gets a list of fields available through this factory.java.lang.Object
fields(int index)
int
indexOfItem(java.lang.Object item)
Gets the index of the passed object.void
post()
Posts changed data for all items in list.int
ratio(int index)
The similarity ratio for the specified item.void
refresh()
Reads saved list filter and data for all listed objects, overwriting values in memory.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
-
-
-
Method Detail
-
fields
IList fields()
Gets a list of fields available through this factory.
Getter method for the COM property "Fields"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
fields
java.lang.Object fields(int index)
-
refresh
void refresh()
Reads saved list filter and data for all listed objects, overwriting values in memory.
-
post
void post()
Posts changed data for all items in list.
-
ratio
int ratio(int index)
The similarity ratio for the specified item.
Getter method for the COM property "Ratio"
- Parameters:
index
- Mandatory int parameter.- Returns:
- Returns a value of type int
-
indexOfItem
int indexOfItem(java.lang.Object item)
Gets the index of the passed object.
- Parameters:
item
- Mandatory java.lang.Object parameter.- Returns:
- Returns a value of type int
-
-