00001 package ;
00002
00003
00011
00012
00013 import config.*;
00014
00015
00016
00017
00018 import .SCT_Chip;
00019
00020
00036 public interface SCT_Module extends config.DalObject {
00037
00043 void print(String dx);
00044
00050 void destroy(config.Configuration db);
00051
00057 String get_sn();
00058
00064 void set_sn(String value);
00069 String get_source();
00070
00075 void set_source(String value);
00080 String get_location();
00081
00086 void set_location(String value);
00092 boolean get_active();
00093
00099 void set_active(boolean value);
00105 short get_select();
00106
00112 void set_select(short value);
00118 SCT_Chip[] get_Chips();
00119
00125 void set_Chips(SCT_Chip[] value);
00126
00127 }
00128