001: /*
002: * $RCSfile: FontStyle.java,v $
003: *
004: * @(#)FontStyle.java 1.13 98/11/05 20:34:29
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:06:56 $
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: /** Description of the Class */
044: public class FontStyle extends Node {
045: //Field
046: MFString family;
047: SFBool horizontal;
048: MFString justify;
049: SFString language;
050: SFBool leftToRight;
051: SFFloat size;
052: SFFloat spacing;
053: SFString style;
054: SFBool topToBottom;
055:
056: String[] s = new String[1];
057:
058: /**
059: *Constructor for the FontStyle object
060: *
061: *@param loader Description of the Parameter
062: */
063: public FontStyle(Loader loader) {
064: super (loader);
065: s[0] = "SERIF";
066: family = new MFString(s);
067: horizontal = new SFBool(true);
068: s[0] = "BEGIN";
069: justify = new MFString(s);
070: language = new SFString();
071: leftToRight = new SFBool(true);
072: size = new SFFloat(1.0f);
073: spacing = new SFFloat(1.0f);
074: style = new SFString("PLAIN");
075: topToBottom = new SFBool(true);
076: initFields();
077: }
078:
079: /**
080: *Constructor for the FontStyle object
081: *
082: *@param loader Description of the Parameter
083: *@param family Description of the Parameter
084: *@param horizontal Description of the Parameter
085: *@param justify Description of the Parameter
086: *@param language Description of the Parameter
087: *@param leftToRight Description of the Parameter
088: *@param size Description of the Parameter
089: *@param spacing Description of the Parameter
090: *@param style Description of the Parameter
091: *@param topToBottom Description of the Parameter
092: */
093: public FontStyle(Loader loader, MFString family, SFBool horizontal,
094: MFString justify, SFString language, SFBool leftToRight,
095: SFFloat size, SFFloat spacing, SFString style,
096: SFBool topToBottom) {
097:
098: super (loader);
099: this .family = family;
100: this .horizontal = horizontal;
101: this .justify = justify;
102: this .language = language;
103: this .leftToRight = leftToRight;
104: this .size = size;
105: this .spacing = spacing;
106: this .style = style;
107: this .topToBottom = topToBottom;
108: initFields();
109: }
110:
111: /** Description of the Method */
112: void initFields() {
113: family.init(this , FieldSpec, Field.FIELD, "family");
114: horizontal.init(this , FieldSpec, Field.FIELD, "horizontal");
115: justify.init(this , FieldSpec, Field.FIELD, "justify");
116: language.init(this , FieldSpec, Field.FIELD, "language");
117: leftToRight.init(this , FieldSpec, Field.FIELD, "leftToRight");
118: size.init(this , FieldSpec, Field.FIELD, "size");
119: spacing.init(this , FieldSpec, Field.FIELD, "spacing");
120: style.init(this , FieldSpec, Field.FIELD, "style");
121: topToBottom.init(this , FieldSpec, Field.FIELD, "horizontal");
122: }
123:
124: /**
125: * Description of the Method
126: *
127: *@return Description of the Return Value
128: */
129: public Object clone() {
130: return new FontStyle(loader, (MFString) family.clone(),
131: (SFBool) horizontal.clone(),
132: (MFString) justify.clone(),
133: (SFString) language.clone(), (SFBool) leftToRight
134: .clone(), (SFFloat) size.clone(),
135: (SFFloat) spacing.clone(), (SFString) style.clone(),
136: (SFBool) topToBottom.clone());
137: }
138:
139: /**
140: * Gets the type attribute of the FontStyle object
141: *
142: *@return The type value
143: */
144: public String getType() {
145: return "FontStyle";
146: }
147:
148: /**
149: * Description of the Method
150: *
151: *@param eventInName Description of the Parameter
152: *@param time Description of the Parameter
153: */
154: public void notifyMethod(String eventInName, double time) {
155: ;
156: }
157: }
|