1 3 import org.ozoneDB.*; 4 5 6 public interface Part extends OzoneRemote { 7 8 9 public void connect( int index, Part part ) throws Exception ; 11 12 public void backConnect( Part part ); 14 15 public void deconnect() throws Exception ; 17 18 public void deBackConnect( Part part ) throws Exception ; 20 21 public void set( String _type, int _x, int _y ); 23 24 public void get(); 25 26 27 public void traversal( int _x, int _y, int depth ) throws Exception ; 28 } 29 | Popular Tags |