10 lines
212 B
Java
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;
|
|
}
|