01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.desktop.dp;
06:
07: public interface DPProperty extends DPObject {
08: public Object getValue();
09:
10: public Object setValue(Object o);
11:
12: public DPProperty copy(DPRoot dpr, boolean deep);
13:
14: public boolean isPropagate();
15:
16: public void setPropagate(boolean state);
17:
18: public boolean isNamed();
19:
20: public DPProperties getProperties();
21: }
|