01: /*
02: * $RCSfile: ConstMFString.java,v $
03: *
04: * @(#)ConstMFString.java 1.8 98/11/05 20:40:21
05: *
06: * Copyright (c) 1996-1998 Sun Microsystems, Inc. All Rights Reserved.
07: *
08: * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
09: * modify and redistribute this software in source and binary code form,
10: * provided that i) this copyright notice and license appear on all copies of
11: * the software; and ii) Licensee does not utilize the software in a manner
12: * which is disparaging to Sun.
13: *
14: * This software is provided "AS IS," without a warranty of any kind. ALL
15: * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
16: * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
17: * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
18: * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
19: * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
20: * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
21: * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
22: * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
23: * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
24: * POSSIBILITY OF SUCH DAMAGES.
25: *
26: * This software is not designed or intended for use in on-line control of
27: * aircraft, air traffic, aircraft navigation or aircraft communications; or in
28: * the design, construction, operation or maintenance of any nuclear
29: * facility. Licensee represents and warrants that it will not use or
30: * redistribute the Software for such purposes.
31: *
32: * $Revision: 1.2 $
33: * $Date: 2005/02/03 23:07:13 $
34: * $State: Exp $
35: */
36: /*
37: * @Author: Rick Goldberg
38: * @Author: Doug Gehringer
39: */
40: package vrml.field;
41:
42: /** Description of the Class */
43: public class ConstMFString extends vrml.ConstMField {
44: org.jdesktop.j3d.loaders.vrml97.impl.ConstMFString impl;
45:
46: /**
47: *Constructor for the ConstMFString object
48: *
49: *@param init Description of the Parameter
50: */
51: public ConstMFString(
52: org.jdesktop.j3d.loaders.vrml97.impl.ConstMFString init) {
53: impl = init;
54: }
55:
56: /**
57: * Gets the value attribute of the ConstMFString object
58: *
59: *@param values Description of the Parameter
60: */
61: public void getValue(String[] values) {
62: impl.getValue(values);
63: }
64:
65: /**
66: * Description of the Method
67: *
68: *@param index Description of the Parameter
69: *@return Description of the Return Value
70: */
71: public String get1Value(int index) {
72: return get1Value(index);
73: }
74:
75: /**
76: * Gets the size attribute of the ConstMFString object
77: *
78: *@return The size value
79: */
80: public int getSize() {
81: return impl.getSize();
82: }
83:
84: /**
85: * Description of the Method
86: *
87: *@return Description of the Return Value
88: */
89: public Object clone() {
90: return new ConstMFString(
91: (org.jdesktop.j3d.loaders.vrml97.impl.ConstMFString) impl
92: .clone());
93: }
94:
95: }
|