home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / unuy2wen / cybcerone / utils / mapable.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  319 b   |  20 lines

  1. // Mapable.java
  2. // 17.03.96
  3. //
  4. // Able to be mapped
  5.  
  6. package cybcerone.utils;
  7.  
  8. /**
  9.  * This means that the mapping module knows how to show this object
  10.  * on a map.
  11.  */
  12. public interface Mapable {
  13.  
  14.   public String getMapName ();
  15.   public String getZoneName ();
  16.   public MapInfoPanel getMapInfoPanel (Appletlike app);
  17.  
  18. }
  19.  
  20.