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 DPConditionalProperties extends DPProperties {
08: public String getCondition();
09:
10: public String getConditionValue();
11: }
|