Interface ICustomizationTransitionRules
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICustomizationTransitionRules extends com4j.Com4jObject
A collection of CustomizationTransitionRule objects applied to a specific field and user group.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addTransitionRule()
Adds a new CustomizationTransitionRule to the current object.int
count()
The number of CustomizationTransitionRule objects contained by the current object.java.lang.String
entityName()
The location (database table) of the field to which the transition rules in the current object are attached.com4j.Com4jObject
field()
The CustomizationField object to which the transition rules in the current object are attached.com4j.Com4jObject
group()
The CustomizationUsersGroup object to which the transition rules in the current object are attached.void
removeTransitionRule(java.lang.Object rule)
Removes the specified transition rule from the current object.com4j.Com4jObject
transitionRule(int position)
The CustomizationTransitionRule specified by its position in the list of transition rules.boolean
updated()
Indicates if the object has been modified since the last synchronization with database.void
updated(boolean pVal)
Indicates if the object has been modified since the last synchronization with database.
-
-
-
Method Detail
-
count
int count()
The number of CustomizationTransitionRule objects contained by the current object.
Getter method for the COM property "Count"
- Returns:
- Returns a value of type int
-
transitionRule
com4j.Com4jObject transitionRule(int position)
The CustomizationTransitionRule specified by its position in the list of transition rules.
Getter method for the COM property "TransitionRule"
- Parameters:
position
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
addTransitionRule
com4j.Com4jObject addTransitionRule()
Adds a new CustomizationTransitionRule to the current object.
- Returns:
- Returns a value of type com4j.Com4jObject
-
removeTransitionRule
void removeTransitionRule(java.lang.Object rule)
Removes the specified transition rule from the current object.
- Parameters:
rule
- Mandatory java.lang.Object parameter.
-
updated
boolean updated()
Indicates if the object has been modified since the last synchronization with database.
Getter method for the COM property "Updated"
- Returns:
- Returns a value of type boolean
-
updated
void updated(boolean pVal)
Indicates if the object has been modified since the last synchronization with database.
Setter method for the COM property "Updated"
- Parameters:
pVal
- Mandatory boolean parameter.
-
field
com4j.Com4jObject field()
The CustomizationField object to which the transition rules in the current object are attached.
Getter method for the COM property "Field"
- Returns:
- Returns a value of type com4j.Com4jObject
-
group
com4j.Com4jObject group()
The CustomizationUsersGroup object to which the transition rules in the current object are attached.
Getter method for the COM property "Group"
- Returns:
- Returns a value of type com4j.Com4jObject
-
entityName
java.lang.String entityName()
The location (database table) of the field to which the transition rules in the current object are attached.
Getter method for the COM property "EntityName"
- Returns:
- Returns a value of type java.lang.String
-
-