Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / classpath / gnu / CORBA / DynAn / AbstractAny.java
blob7060f86b27fb446d65b539dc4c0b3c2f9025f764
1 /* AbstractAny.java --
2 Copyright (C) 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package gnu.CORBA.DynAn;
41 import gnu.CORBA.TypeKindNamer;
43 import org.omg.CORBA.Any;
44 import org.omg.CORBA.LocalObject;
45 import org.omg.CORBA.ORB;
46 import org.omg.CORBA.TypeCode;
47 import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
49 import java.io.Serializable;
51 /**
52 * The top of our DynAny implementation, this class provides ORB that is
53 * required to create anys and factory that is required to initialise DynAnys.
55 * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
57 public abstract class AbstractAny
58 extends LocalObject
59 implements Serializable
61 /**
62 * Use serialVersionUID for interoperability.
64 private static final long serialVersionUID = 1;
66 /**
67 * The "initial final_type" that can be an alias of the known final_type.
69 public TypeCode official_type;
71 /**
72 * The "basic" final_type to that the final_type finally evaluates.
74 public final TypeCode final_type;
76 /**
77 * The DynAny factory, required in initializations.
79 public final gnuDynAnyFactory factory;
81 /**
82 * The ORB, to that this DynAny belongs.
84 public final ORB orb;
86 /**
87 * The minor code, indicating the error, related to work with non - GNU
88 * Classpath DynAny.
90 short MINOR = 8148;
92 /**
93 * The message about the empty structure or exception.
95 static final String EMPTY = "Empty structure with no fields.";
97 /**
98 * The message about the structure or exception size mismatch.
100 static final String SIZE = "Size mismatch.";
103 * The message about the content of this DynAny being equal to
104 * <code>null</code>
106 static final String ISNULL = "The content is null";
109 * The change value listener.
111 ValueChangeListener listener;
114 * Create the abstract dyn any.
116 public AbstractAny(TypeCode oType, TypeCode aType,
117 gnuDynAnyFactory aFactory, ORB anOrb
120 official_type = oType;
121 final_type = aType;
122 factory = aFactory;
123 orb = anOrb;
127 * Get the typecode.
129 public TypeCode type()
131 return official_type;
135 * Create the Any.
137 public Any createAny()
139 return orb.create_any();
143 * The "value changed" listener.
145 protected void valueChanged()
147 if (listener != null)
148 listener.changed();
152 * Check the type.
154 void checkType(TypeCode expected, TypeCode actual)
155 throws TypeMismatch
157 if (!expected.equal(actual))
158 throw new TypeMismatch(typeMismatch(expected, actual));
162 * Format "Type mismatch" string.
164 String typeMismatch(TypeCode expected, TypeCode actual)
166 return TypeKindNamer.nameIt(expected) + " expected " +
167 TypeKindNamer.nameIt(actual);
171 * Format "size mismatch" string.
173 String sizeMismatch(int here, int other)
175 return "Size mismatch, " + other + " (expected " + here + ")";