2026-03-17 13:31:18 -07:00

10 lines
212 B
Java

package com.honeywell.beans;
import javax.baja.sys.BTime;
public interface IScheduleDay {
IScheduleEvent getEvent(int i) throws Exception;
void setEvent(int i, BTime bTime, int i2) throws Exception;
}