Package step.repository.alm.otaclient
Interface ICustomizationLists
- 
- All Superinterfaces:
- com4j.Com4jObject
 
 public interface ICustomizationLists extends com4j.Com4jObjectA collection of all CustomizationList objects in the project.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObjectaddList(java.lang.String name)Adds a new CustomizationList object.intcount()The number of lists in the CustomizationLists object.booleanisListExist(java.lang.String listName)Checks if the specified customization list exists.com4j.Com4jObjectlist(java.lang.Object param)Gets the CustomizationList specified by name or ID.com4j.Com4jObjectlistByCount(int count)Gets the CustomizationList specified by its index number.voidremoveList(java.lang.String name)Removes a CustomizationList object.
 
- 
- 
- 
Method Detail- 
addListcom4j.Com4jObject addList(java.lang.String name) Adds a new CustomizationList object. - Parameters:
- name- Mandatory java.lang.String parameter.
- Returns:
- Returns a value of type com4j.Com4jObject
 
 - 
removeListvoid removeList(java.lang.String name) Removes a CustomizationList object. - Parameters:
- name- Mandatory java.lang.String parameter.
 
 - 
listcom4j.Com4jObject list(java.lang.Object param) Gets the CustomizationList specified by name or ID. Getter method for the COM property "List" - Parameters:
- param- Mandatory java.lang.Object parameter.
- Returns:
- Returns a value of type com4j.Com4jObject
 
 - 
countint count() The number of lists in the CustomizationLists object. Getter method for the COM property "Count" - Returns:
- Returns a value of type int
 
 - 
listByCountcom4j.Com4jObject listByCount(int count) Gets the CustomizationList specified by its index number. Getter method for the COM property "ListByCount" - Parameters:
- count- Mandatory int parameter.
- Returns:
- Returns a value of type com4j.Com4jObject
 
 - 
isListExistboolean isListExist(java.lang.String listName) Checks if the specified customization list exists. Getter method for the COM property "IsListExist" - Parameters:
- listName- Mandatory java.lang.String parameter.
- Returns:
- Returns a value of type boolean
 
 
- 
 
-