source: trunk/src/ws/fugue88/jpath/Property.java

Last change on this file was 2, checked in by dsowen, 21 years ago

Initial commit.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 555 bytes
Line 
1/*
2 * Created on Mar 15, 2005
3 *
4 * $Log$
5 * Revision 1.1  2005/08/03 00:35:29  dsowen
6 * Initial commit.
7 *
8 * Revision 1.2  2005/04/10 19:48:29  dowen
9 * Renamed package.
10 *
11 * Revision 1.1  2005/03/19 16:49:21  dowen
12 * Initial commit.
13 *
14 */
15package ws.fugue88.jpath;
16
17import java.lang.reflect.InvocationTargetException;
18
19/**
20 * @author dsowen
21 */
22interface Property {
23
24        String getName();
25
26        Class getType();
27
28        Object getValue(Object that) throws InvocationTargetException;
29
30        void setValue(Object that, Object value) throws InvocationTargetException;
31}
Note: See TracBrowser for help on using the repository browser.