| Removed Methods |
FilterAttribute addAttribute(VarDefinition, Comparison, boolean)
|
Adds a new parametric FilterAttribute to the filter.
In this case you define the variable, the comparison and if the filter attribute is parametric or not. |
FilterAttribute addAttribute(VarDefinition, Comparison, Object)
|
Adds a new FilterAttribute to the filter.
In this case you define the variable, the comparison and the value to compare. |
FilterAttribute addAttribute(VarDefinition, Comparison, Object, boolean)
|
Adds a new parametric FilterAttribute to the filter.
In this case you define the variable, the comparison, the value to compare and if the filter attribute
is parametric or not. |
void addRefineInstance(InstanceId)
|
Adds an instances ID where this filter will be executed. |
String getGrabActivityName()
|
Gets name of the Grab activity. |
List getRefineInstances()
|
Gets the instances Id where this filter will be executed. |
void setGrabActivity(Activity)
|
Sets the Grab Activity for the filter.
If you set this activity, the filter will generate a Comparator to obtain all instances
that you could grab to the activity specified. |
void setGrabActivityName(String)
|
Sets the Grab Activity for the filter.
If you set this activity, the filter will generate a Comparator to obtain all instances
that you could grab to the activity specified. |
| Added Methods |
FilterAttribute addAttribute(VarDefinition, Comparison, boolean)
|
Add new FilterAttribute to the filter. |
FilterAttribute addAttribute(VarDefinition, Comparison, Object)
|
Add new FilterAttribute to the filter. |
FilterAttribute addAttribute(VarDefinition, Comparison, Object, boolean)
|
Add new FilterAttribute to the filter. |
FilterAttribute addAttribute(String, int, Comparison, Object, boolean)
|
Add new FilterAttribute to the filter. |
Comparator getComparator()
|
Returns the java.util.Comparator generated for this filter. |
| Changed Methods |
List<FilterAttribute> getAttributes()
|
Change in return type from List to List<FilterAttribute>.
|
Returns all attributes added to the filter
|
List<Filter> getFilters()
|
Change in return type from List to List<Filter>.
|
Returns all Filters added to this filter. |
List<FilterAttribute> getParametricAttributes()
|
Change in return type from List to List<FilterAttribute>.
|
Return all parametric attributes. |
List<FilterAttribute> removeAttributes(String)
|
Change in return type from List to List<FilterAttribute>.
|
Remove all attribute for an specific variable id. |
List<FilterAttribute> getAttributesByVariable(String)
|
Change in return type from List to List<FilterAttribute>.
|
Return all attributes added to the filter for a specific variable. |
Map<String, List<FilterAttribute>> getAttributesByVariable()
|
Change in return type from Map to (Map<String, List<FilterAttribute>>).
|
Returns a map with all attributes added to the filter. |