Esempio n. 1
0
 public AlarmOccurrence(Alarm a, Date_Time dt, RecurringComponent rc)
 {
     this.Alarm = a;
     this.DateTime = dt;
     this.Component = rc;
 }
Esempio n. 2
0
 public override void AddAlarm(Alarm alarm)
 {
 }
Esempio n. 3
0
 public AlarmOccurrence(AlarmOccurrence ao)
 {
     this.Alarm = ao.Alarm;
     this.DateTime = ao.DateTime.Copy();
     this.Component = ao.Component;
 }
Esempio n. 4
0
 public AlarmOccurrence(Alarm a, Date_Time dt, RecurringComponent rc)
 {
     this.Alarm = a;
     this.Period = new Period(dt);
     this.Component = rc;
 }
Esempio n. 5
0
 public AlarmOccurrence(Alarm a, Date_Time dt, RecurringComponent rc)
 {
     this.Alarm     = a;
     this.DateTime  = dt;
     this.Component = rc;
 }
Esempio n. 6
0
 public AlarmOccurrence(AlarmOccurrence ao)
 {
     this.Alarm     = ao.Alarm;
     this.DateTime  = ao.DateTime.Copy();
     this.Component = ao.Component;
 }
Esempio n. 7
0
 public override void AddAlarm(Alarm alarm)
 {
 }
Esempio n. 8
0
        static public Alarm Create(RecurringComponent rc)
        {
            Alarm alarm = (Alarm)rc.iCalendar.Create(rc, "VALARM");

            return(alarm);
        }