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 DPString extends DPAtomic {
08: public void setStringValue(String v);
09:
10: public String getStringValue();
11: }
|