Class ConditionalProcessGroup
- java.lang.Object
-
- org.eclipse.cdt.core.templateengine.process.ConditionalProcessGroup
-
public class ConditionalProcessGroup extends Object
ConditionalProcess encloses an <if condition="..."></if> block of the template. The currently supported conditions are equals and not equals operations performed on two Strings. The respective operators are == and !=. Any spaces will be treated as part of the operands. The two operands will be evaluated for simple String equals and not equals after performing a single pass replace of any replace markers with their values in the template's value store.
-
-
Constructor Summary
Constructors Constructor Description ConditionalProcessGroup(TemplateCore template, Element[] processElements)
Constructs a ConditionalProcess element from the supplied process elements while building Process objects out of each of the supplied process elements (<process>).ConditionalProcessGroup(TemplateCore template, Element conditionElement, int id)
Constructs a ConditionalProcess element from the supplied conditionElement (<if>) while building Process objects out of each of the element's <process> children.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>
getAllMacros()
Set<String>
getMacros()
Returns the Macros as a Set.boolean
isConditionValueTrue()
boolean
isReadyToProcess()
Checks if this conditional process group is completely ready to be processed.List<org.eclipse.core.runtime.IStatus>
process(org.eclipse.core.runtime.IProgressMonitor monitor)
Process and Returns the Status of the prosses as a List.
-
-
-
Constructor Detail
-
ConditionalProcessGroup
public ConditionalProcessGroup(TemplateCore template, Element conditionElement, int id)
Constructs a ConditionalProcess element from the supplied conditionElement (<if>) while building Process objects out of each of the element's <process> children.
-
ConditionalProcessGroup
public ConditionalProcessGroup(TemplateCore template, Element[] processElements)
Constructs a ConditionalProcess element from the supplied process elements while building Process objects out of each of the supplied process elements (<process>). The condition in this case is evaluated to true. This Constructor is expected to be used to evaluate all those process elements that are children of the template root element.
-
-
Method Detail
-
isReadyToProcess
public boolean isReadyToProcess()
Checks if this conditional process group is completely ready to be processed.
-
isConditionValueTrue
public boolean isConditionValueTrue()
- Returns:
- boolean, true if Condition Value is True.
-
process
public List<org.eclipse.core.runtime.IStatus> process(org.eclipse.core.runtime.IProgressMonitor monitor) throws ProcessFailureException
Process and Returns the Status of the prosses as a List.- Parameters:
monitor
-- Returns:
- List contains the IStatus.
- Throws:
ProcessFailureException
-
-