| java.lang.Object com.sun.perseus.model.TimeCondition
All known Subclasses: com.sun.perseus.model.SyncBaseCondition, com.sun.perseus.model.EventBaseCondition, com.sun.perseus.model.OffsetCondition,
TimeCondition | abstract public class TimeCondition (Code) | | A TimeCondition represents a value in a
TimedElementSupport begin or end conditions list.
version: $Id: TimeCondition.java,v 1.2 2006/04/21 06:39:19 st125089 Exp $ |
Constructor Summary | |
public | TimeCondition(TimedElementSupport timedElement, boolean isBegin) As a result of constructing a new TimeCondition , the
condition is added to the associated TimedElementSupport 's
begin or end list of conditions.
Parameters: timedElement - the associated TimedElementSupport . |
Method Summary | |
protected static String | toStringTrait(Vector v) Converts a vector of TimeCondition instances to a string trait value.
Parameters: v - the TimeCondition vector to convert. | abstract protected String | toStringTrait() Converts this TimeCondition to a String trait. |
isBegin | boolean isBegin(Code) | | Controls whether this condition is part of a begin or end list
|
TimeCondition | public TimeCondition(TimedElementSupport timedElement, boolean isBegin)(Code) | | As a result of constructing a new TimeCondition , the
condition is added to the associated TimedElementSupport 's
begin or end list of conditions.
Parameters: timedElement - the associated TimedElementSupport . Should not be null. Parameters: isBegin - defines whether this condition is for a begin list. |
toStringTrait | protected static String toStringTrait(Vector v)(Code) | | Converts a vector of TimeCondition instances to a string trait value.
Parameters: v - the TimeCondition vector to convert. Should not be null.This should be called with a TimedElementSupport begin orend condition vector, which should never be null. the string trait value. |
toStringTrait | abstract protected String toStringTrait()(Code) | | Converts this TimeCondition to a String trait.
a string describing this TimeCondition |
|
|