01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/
05:
06: /***** This class is generated by an IDL compiler and is ORB-vendor specific.
07: A "dummy" implementation is provided so that the "official" org.omg.*
08: packages may be compiled. In order to actually use a Java ORB,
09: the ORB vendor's implementation will provide a "real"
10: implementation of the class.
11:
12: In order to be conformant the class shall support the signatures
13: specified here, but will have an orb-specific implementation.
14:
15: The class may support additional vendor specific functionality.
16: It shall have at least the inheritance relationships specified
17: here. Any additional (vendor specific) inheritance relationships may
18: only be with other classes and interfaces that are guaranteed to be
19: present in the JDK core.
20: *****/package org.omg.CORBA.ValueDefPackage;
21:
22: public final class FullValueDescription implements
23: org.omg.CORBA.portable.IDLEntity {
24:
25: public java.lang.String name;
26: public java.lang.String id;
27: public boolean is_abstract;
28: public boolean is_custom;
29: public java.lang.String defined_in;
30: public java.lang.String version;
31: public org.omg.CORBA.OperationDescription[] operations;
32: public org.omg.CORBA.AttributeDescription[] attributes;
33: public org.omg.CORBA.ValueMember[] members;
34: public org.omg.CORBA.Initializer[] initializers;
35: public java.lang.String[] supported_interfaces;
36: public java.lang.String[] abstract_base_values;
37: public boolean is_truncatable;
38: public java.lang.String base_value;
39: public org.omg.CORBA.TypeCode type;
40:
41: public FullValueDescription() {
42: throw new org.omg.CORBA.NO_IMPLEMENT();
43: }
44:
45: public FullValueDescription(java.lang.String name,
46: java.lang.String id, boolean is_abstract,
47: boolean is_custom, java.lang.String defined_in,
48: java.lang.String version,
49: org.omg.CORBA.OperationDescription[] operations,
50: org.omg.CORBA.AttributeDescription[] attributes,
51: org.omg.CORBA.ValueMember[] members,
52: org.omg.CORBA.Initializer[] initializers,
53: java.lang.String[] supported_interfaces,
54: java.lang.String[] abstract_base_values,
55: boolean is_truncatable, java.lang.String base_value,
56: org.omg.CORBA.TypeCode type) {
57:
58: throw new org.omg.CORBA.NO_IMPLEMENT();
59: }
60: }
|