summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2005-03-06 19:33:45 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2005-03-06 19:33:45 +0000
commite4223c14d7c2cf3292f261f0ae9fbdaa2a5d2a29 (patch)
tree2e34bb3124dbb8414cfb1f77c09d8b91460139d8
parentf0acf7152cd93661dc70bb171cccfb3b81125a97 (diff)
downloadclasspath-e4223c14d7c2cf3292f261f0ae9fbdaa2a5d2a29.tar.gz
2005-03-06 Andrew John Hughes <gnu_andrew@member.fsf.org>
* org/omg/CORBA/CompletionStatus.java, org/omg/CORBA/TypeCode.java, org/omg/CORBA/primitiveTypeCode.java: Fix references to Bounds and add implementations of IDLEntity.
-rw-r--r--ChangeLog8
-rw-r--r--org/omg/CORBA/CompletionStatus.java4
-rw-r--r--org/omg/CORBA/TypeCode.java14
-rw-r--r--org/omg/CORBA/primitiveTypeCode.java6
4 files changed, 24 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 722175470..460b8f2a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-03-06 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
+ * org/omg/CORBA/CompletionStatus.java,
+ org/omg/CORBA/TypeCode.java,
+ org/omg/CORBA/primitiveTypeCode.java:
+ Fix references to Bounds and add implementations
+ of IDLEntity.
+
2005-03-06 Audrius Meskauskas <audriusa@bluewin.ch>
* org/omg/CORBA/TypeCodePackage/BadKind.java,
org/omg/CORBA/SystemException.java,
diff --git a/org/omg/CORBA/CompletionStatus.java b/org/omg/CORBA/CompletionStatus.java
index c5cf97686..aa83c3633 100644
--- a/org/omg/CORBA/CompletionStatus.java
+++ b/org/omg/CORBA/CompletionStatus.java
@@ -40,13 +40,15 @@ package org.omg.CORBA;
import java.io.Serializable;
+import org.omg.CORBA.portable.IDLEntity;
+
/**
* Defines the method completion status, usually for the time moment,
* when the exception has been thrown.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class CompletionStatus
- implements Serializable
+ implements Serializable, IDLEntity
{
/**
* Use serialVersionUID for interoperability.
diff --git a/org/omg/CORBA/TypeCode.java b/org/omg/CORBA/TypeCode.java
index 97c052eb7..b5d288305 100644
--- a/org/omg/CORBA/TypeCode.java
+++ b/org/omg/CORBA/TypeCode.java
@@ -38,6 +38,7 @@
package org.omg.CORBA;
+import org.omg.CORBA.portable.IDLEntity;
import org.omg.CORBA.TypeCodePackage.BadKind;
/**
@@ -190,7 +191,8 @@ public abstract class TypeCode
* valid bounds.
*/
public abstract Any member_label(int index)
- throws BadKind, Bounds;
+ throws BadKind,
+ org.omg.CORBA.TypeCodePackage.Bounds;
/**
* Retrieves the simple name of the member identified by the given index.
@@ -205,7 +207,8 @@ public abstract class TypeCode
* valid bounds.
*/
public abstract String member_name(int index)
- throws BadKind, Bounds;
+ throws BadKind,
+ org.omg.CORBA.TypeCodePackage.Bounds;
/**
* Retrieves the member type of the member identified by the given index.
@@ -220,7 +223,8 @@ public abstract class TypeCode
* valid bounds.
*/
public abstract TypeCode member_type(int index)
- throws BadKind, Bounds;
+ throws BadKind,
+ org.omg.CORBA.TypeCodePackage.Bounds;
/**
* Returns the visibility scope of the member at the given index.
@@ -237,7 +241,9 @@ public abstract class TypeCode
* valid bounds.
*/
public abstract short member_visibility(int index)
- throws BadKind, Bounds;
+ throws BadKind,
+ org.omg.CORBA.TypeCodePackage.Bounds;
+
/**
* Retrieves the simple name identifying this TypeCode object
diff --git a/org/omg/CORBA/primitiveTypeCode.java b/org/omg/CORBA/primitiveTypeCode.java
index 3cc4193d1..482b28649 100644
--- a/org/omg/CORBA/primitiveTypeCode.java
+++ b/org/omg/CORBA/primitiveTypeCode.java
@@ -153,7 +153,7 @@ class primitiveTypeCode
public Any member_label(int index)
throws org.omg.CORBA.TypeCodePackage.BadKind,
- org.omg.CORBA.Bounds
+ org.omg.CORBA.TypeCodePackage.Bounds
{
throw new BadKind();
}
@@ -166,14 +166,14 @@ class primitiveTypeCode
public TypeCode member_type(int index)
throws org.omg.CORBA.TypeCodePackage.BadKind,
- org.omg.CORBA.Bounds
+ org.omg.CORBA.TypeCodePackage.Bounds
{
throw new BadKind();
}
public short member_visibility(int index)
throws org.omg.CORBA.TypeCodePackage.BadKind,
- org.omg.CORBA.Bounds
+ org.omg.CORBA.TypeCodePackage.Bounds
{
throw new BadKind();
}