home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / jmx.jar / javax / management / Descriptor.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-10-28  |  720 b   |  24 lines

  1. package javax.management;
  2.  
  3. import java.io.Serializable;
  4.  
  5. public interface Descriptor extends Cloneable, Serializable {
  6.    Object getFieldValue(String var1) throws RuntimeOperationsException;
  7.  
  8.    void setField(String var1, Object var2) throws RuntimeOperationsException;
  9.  
  10.    void removeField(String var1);
  11.  
  12.    String[] getFieldNames();
  13.  
  14.    Object[] getFieldValues(String[] var1);
  15.  
  16.    String[] getFields();
  17.  
  18.    void setFields(String[] var1, Object[] var2) throws RuntimeOperationsException;
  19.  
  20.    Object clone() throws RuntimeOperationsException;
  21.  
  22.    boolean isValid() throws RuntimeOperationsException;
  23. }
  24.