00001 package ;
00002
00003
00011
00012
00013 import config.*;
00014
00015
00016
00017
00018 import .PowerCard;
00019 import .PowerChannel;
00020
00021
00037 public interface PowerCrate extends config.DalObject {
00038
00044 void print(String dx);
00045
00051 void destroy(config.Configuration db);
00052
00057 short get_id();
00058
00063 void set_id(short value);
00068 PowerChannel[] get_channels();
00069
00074 void set_channels(PowerChannel[] value);
00075
00080 PowerCard[] get_cards();
00081
00086 void set_cards(PowerCard[] value);
00087
00088 }
00089