public CalendarEventType()
 {
     this.start    = new Start();
     this.duration = new Duration();
     this.config   = new AgentConfigType();
 }
 public CalendarEventType(Start start, Duration duration, AgentConfigType config)
 {
     this.start    = start;
     this.duration = duration;
     this.config   = config;
 }
Exemple #3
0
 public AgentType(AgentConfigType config, CalendarEventType[] events, ConnectionType[] connections)
 {
     this.config      = config;
     this.events      = events;
     this.connections = connections;
 }