00001 package ;
00002
00003
00011
00012
00013 import config.*;
00014
00015
00016
00017
00018 import .PowerParam;
00019
00020
00036 public interface PowerCard extends config.DalObject {
00037
00043 void print(String dx);
00044
00050 void destroy(config.Configuration db);
00051
00056 short get_id();
00057
00062 void set_id(short value);
00067 String get_type();
00068
00073 void set_type(String value);
00078 PowerParam[] get_params();
00079
00084 void set_params(PowerParam[] value);
00085
00086 }
00087