// // (C) COPYRIGHT International Business Machines Corp. 1997 // All Rights Reserved // Licensed Materials - Property of IBM // // US Government Users Restricted Rights - Use, duplication or // disclosure restricted by GSA ADP Schedule Contract with IBM Corp. // /* * $Header: /home/gda/dxcvs/dx/src/ui++/java/dx/net/ValueNode.java,v 1.1.1.1 1999/03/24 15:17:31 gda Exp $ */ package dx.net; import java.util.*; import dx.runtime.*; public class ValueNode extends dx.net.InteractorNode { private String value ; public ValueNode(Network net, String name, int instance, String notation) { super(net, name, instance, notation); this.value = null; } public synchronized void setValue (String value) { this.value = value; } public void installValues (Interactor i) { super.installValues(i); if (this.value == null) return ; i.setValue(this.value); } }; // end ValueNode