//# __________ PROTOCOL :: INSTANCE CREATION __________ #// public static JwTimeInterval CreateTimeInterval(JwTime start, JwTime end) { JwTimeInterval ti; ti = new JwTimeInterval(); ti.SetStart(start); ti.SetEnd(end); return ti; }
//# __________ PROTOCOL :: COPY __________ #// public JwTimeInterval GetTimeIntervalCopy() { JwTimeInterval e; e = new JwTimeInterval(); if ( HasStart() ) e.SetStart(GetStart().GetTimeCopy()); if ( HasEnd() ) e.SetEnd(GetEnd().GetTimeCopy()); return e; }