source: xssim/src/schedframe/scheduling/IntervalTimeRequirements.java @ 104

Revision 104, 590 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling;
2
3import org.joda.time.DateTime;
4
5import org.qcg.broker.schemas.resreqs.ExecutionTimeType;
6
7public class IntervalTimeRequirements extends AbstractTimeRequirements<ExecutionTimeType>{
8
9        private static final long serialVersionUID = 465127559825495346L;
10
11       
12        public IntervalTimeRequirements(DateTime start, DateTime end){
13                setEnd(end);
14                setStart(start);
15        }
16       
17        public ExecutionTimeType getDescription() {
18                throw new RuntimeException("Not implemented.");
19        }
20
21        public String getDocument() throws Exception {
22                throw new RuntimeException("Not implemented.");
23        }
24
25}
Note: See TracBrowser for help on using the repository browser.