01: /*
02: * ObjectDesc.java
03: *
04: * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.lang;
10:
11: import java.lang.reflect.*;
12: import java.util.*;
13:
14: public interface ObjectDesc {
15:
16: public Method[] getMethods();
17:
18: public void handleProperties(PropertyHandler handler);
19: }
|