home *** CD-ROM | disk | FTP | other *** search
- package javax.management;
-
- import java.io.Serializable;
-
- public interface Descriptor extends Cloneable, Serializable {
- Object getFieldValue(String var1) throws RuntimeOperationsException;
-
- void setField(String var1, Object var2) throws RuntimeOperationsException;
-
- void removeField(String var1);
-
- String[] getFieldNames();
-
- Object[] getFieldValues(String[] var1);
-
- String[] getFields();
-
- void setFields(String[] var1, Object[] var2) throws RuntimeOperationsException;
-
- Object clone() throws RuntimeOperationsException;
-
- boolean isValid() throws RuntimeOperationsException;
- }
-