home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1999 #6 / Datatid_1999-06.iso / internet / Tango352Promo / Tango / data.z / Messageable.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-02-03  |  473 b   |  16 lines

  1. package com.everyware.tango.jas;
  2.  
  3. public interface Messageable {
  4.    int getNumber() throws Exception;
  5.  
  6.    void putNumber(int var1) throws Exception;
  7.  
  8.    int getSmallNumber() throws Exception;
  9.  
  10.    void putSmallNumber(int var1) throws Exception;
  11.  
  12.    String getString() throws Exception;
  13.  
  14.    void putString(String var1) throws Exception;
  15. }
  16.