home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Java / netscape / util / Encoder.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-12  |  1.5 KB  |  44 lines

  1. package netscape.util;
  2.  
  3. public interface Encoder {
  4.    void encodeBoolean(String var1, boolean var2) throws CodingException;
  5.  
  6.    void encodeBooleanArray(String var1, boolean[] var2, int var3, int var4) throws CodingException;
  7.  
  8.    void encodeChar(String var1, char var2) throws CodingException;
  9.  
  10.    void encodeCharArray(String var1, char[] var2, int var3, int var4) throws CodingException;
  11.  
  12.    void encodeByte(String var1, byte var2) throws CodingException;
  13.  
  14.    void encodeByteArray(String var1, byte[] var2, int var3, int var4) throws CodingException;
  15.  
  16.    void encodeShort(String var1, short var2) throws CodingException;
  17.  
  18.    void encodeShortArray(String var1, short[] var2, int var3, int var4) throws CodingException;
  19.  
  20.    void encodeInt(String var1, int var2) throws CodingException;
  21.  
  22.    void encodeIntArray(String var1, int[] var2, int var3, int var4) throws CodingException;
  23.  
  24.    void encodeLong(String var1, long var2) throws CodingException;
  25.  
  26.    void encodeLongArray(String var1, long[] var2, int var3, int var4) throws CodingException;
  27.  
  28.    void encodeFloat(String var1, float var2) throws CodingException;
  29.  
  30.    void encodeFloatArray(String var1, float[] var2, int var3, int var4) throws CodingException;
  31.  
  32.    void encodeDouble(String var1, double var2) throws CodingException;
  33.  
  34.    void encodeDoubleArray(String var1, double[] var2, int var3, int var4) throws CodingException;
  35.  
  36.    void encodeString(String var1, String var2) throws CodingException;
  37.  
  38.    void encodeStringArray(String var1, String[] var2, int var3, int var4) throws CodingException;
  39.  
  40.    void encodeObject(String var1, Object var2) throws CodingException;
  41.  
  42.    void encodeObjectArray(String var1, Object[] var2, int var3, int var4) throws CodingException;
  43. }
  44.