001: /*
002: * $RCSfile: SFBool.java,v $
003: *
004: * @(#)SFBool.java 1.17 98/11/05 20:34:59
005: *
006: * Copyright (c) 1996-1998 Sun Microsystems, Inc. All Rights Reserved.
007: *
008: * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
009: * modify and redistribute this software in source and binary code form,
010: * provided that i) this copyright notice and license appear on all copies of
011: * the software; and ii) Licensee does not utilize the software in a manner
012: * which is disparaging to Sun.
013: *
014: * This software is provided "AS IS," without a warranty of any kind. ALL
015: * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
016: * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
017: * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
018: * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
019: * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
020: * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
021: * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
022: * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
023: * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
024: * POSSIBILITY OF SUCH DAMAGES.
025: *
026: * This software is not designed or intended for use in on-line control of
027: * aircraft, air traffic, aircraft navigation or aircraft communications; or in
028: * the design, construction, operation or maintenance of any nuclear
029: * facility. Licensee represents and warrants that it will not use or
030: * redistribute the Software for such purposes.
031: *
032: * $Revision: 1.2 $
033: * $Date: 2005/02/03 23:07:00 $
034: * $State: Exp $
035: */
036: /*
037: * @Author: Rick Goldberg
038: * @Author: Doug Gehringer
039: *
040: */
041: package org.jdesktop.j3d.loaders.vrml97.impl;
042:
043: import java.util.Observable;
044: import java.util.Observer;
045:
046: /** Description of the Class */
047: public class SFBool extends Field {
048:
049: boolean value;
050: boolean initValue;
051:
052: /**
053: *Constructor for the SFBool object
054: *
055: *@param value Description of the Parameter
056: */
057: public SFBool(boolean value) {
058: this .value = value;
059: initValue = value;
060: }
061:
062: /** Description of the Method */
063: void reset() {
064: value = initValue;
065: }
066:
067: /**
068: * Gets the value attribute of the SFBool object
069: *
070: *@return The value value
071: */
072: public boolean getValue() {
073: return value;
074: }
075:
076: /**
077: * Sets the value attribute of the SFBool object
078: *
079: *@param b The new value value
080: */
081: public void setValue(boolean b) {
082: value = b;
083: route();
084: }
085:
086: /**
087: * Sets the value attribute of the SFBool object
088: *
089: *@param b The new value value
090: */
091: public void setValue(SFBool b) {
092: setValue(b.value);
093: }
094:
095: /**
096: * Sets the value attribute of the SFBool object
097: *
098: *@param b The new value value
099: */
100: public void setValue(ConstSFBool b) {
101: setValue((SFBool) b.ownerField);
102: }
103:
104: /**
105: * Description of the Method
106: *
107: *@return Description of the Return Value
108: */
109: public synchronized Object clone() {
110: return new SFBool(value);
111: }
112:
113: /**
114: * Description of the Method
115: *
116: *@return Description of the Return Value
117: */
118: public synchronized ConstField constify() {
119: if (constField == null) {
120: constField = new ConstSFBool(this );
121: }
122: return constField;
123: }
124:
125: /**
126: * Description of the Method
127: *
128: *@param field Description of the Parameter
129: */
130: public void update(Field field) {
131: setValue(((SFBool) field).getValue());
132: }
133:
134: /**
135: * Description of the Method
136: *
137: *@return Description of the Return Value
138: */
139: public vrml.Field wrap() {
140: return new vrml.field.SFBool(this );
141: }
142:
143: /**
144: * Description of the Method
145: *
146: *@return Description of the Return Value
147: */
148: public String toString() {
149: return value + "\n";
150: }
151: }
|