diff options
author | Audrius Meskauskas <audriusa@Bioinformatics.org> | 2005-10-25 13:18:03 +0000 |
---|---|---|
committer | Audrius Meskauskas <audriusa@Bioinformatics.org> | 2005-10-25 13:18:03 +0000 |
commit | d31da1f610d41092e4c8adf9d7cc0586dd6d6207 (patch) | |
tree | 567570a9b2b1d87e21b403949305f3d36625d85d /org | |
parent | 831bf921023e25b4f6b79fa96fc0b0ce039e0acf (diff) | |
download | classpath-d31da1f610d41092e4c8adf9d7cc0586dd6d6207.tar.gz |
2005-10-25 Audrius Meskauskas <AudriusA@Bioinformatics.org>
* org/omg/CORBA/IDLEntity.java: Deleted.
* gnu/CORBA/primitiveTypeCode.java,
org/omg/CORBA/PolicyError.java,
org/omg/CORBA/TypeCodePackage/BadKind.java,
org/omg/CORBA/TypeCodePackage/Bounds.java:
Use org.omg.CORBA.portable.IDLEntity.
Diffstat (limited to 'org')
-rw-r--r-- | org/omg/CORBA/IDLEntity.java | 50 | ||||
-rw-r--r-- | org/omg/CORBA/PolicyError.java | 2 | ||||
-rw-r--r-- | org/omg/CORBA/TypeCodePackage/BadKind.java | 2 | ||||
-rw-r--r-- | org/omg/CORBA/TypeCodePackage/Bounds.java | 2 |
4 files changed, 4 insertions, 52 deletions
diff --git a/org/omg/CORBA/IDLEntity.java b/org/omg/CORBA/IDLEntity.java deleted file mode 100644 index 6515d8330..000000000 --- a/org/omg/CORBA/IDLEntity.java +++ /dev/null @@ -1,50 +0,0 @@ -/* IDLEntity.java -- - Copyright (C) 2005 Free Software Foundation, Inc. - -This file is part of GNU Classpath. - -GNU Classpath is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GNU Classpath is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GNU Classpath; see the file COPYING. If not, write to the -Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301 USA. - -Linking this library statically or dynamically with other modules is -making a combined work based on this library. Thus, the terms and -conditions of the GNU General Public License cover the whole -combination. - -As a special exception, the copyright holders of this library give you -permission to link this library with independent modules to produce an -executable, regardless of the license terms of these independent -modules, and to copy and distribute the resulting executable under -terms of your choice, provided that you also meet, for each linked -independent module, the terms and conditions of the license of that -module. An independent module is a module which is not derived from -or based on this library. If you modify this library, you may extend -this exception to your version of the library, but you are not -obligated to do so. If you do not wish to do so, delete this -exception statement from your version. */ - - -package org.omg.CORBA; - -import java.io.Serializable; - -/** - * Indicates that this class has a corresponding Helper class. - * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) - */ -public interface IDLEntity - extends Serializable -{ -} diff --git a/org/omg/CORBA/PolicyError.java b/org/omg/CORBA/PolicyError.java index bd60fbe69..749868a99 100644 --- a/org/omg/CORBA/PolicyError.java +++ b/org/omg/CORBA/PolicyError.java @@ -38,6 +38,8 @@ exception statement from your version. */ package org.omg.CORBA; +import org.omg.CORBA.portable.IDLEntity; + import java.io.Serializable; /** diff --git a/org/omg/CORBA/TypeCodePackage/BadKind.java b/org/omg/CORBA/TypeCodePackage/BadKind.java index 88192f6ad..8ca659d7f 100644 --- a/org/omg/CORBA/TypeCodePackage/BadKind.java +++ b/org/omg/CORBA/TypeCodePackage/BadKind.java @@ -40,8 +40,8 @@ package org.omg.CORBA.TypeCodePackage; import java.io.Serializable; -import org.omg.CORBA.IDLEntity; import org.omg.CORBA.UserException; +import org.omg.CORBA.portable.IDLEntity; /** * This exception is thrown when an inappropriate operation is invoked on diff --git a/org/omg/CORBA/TypeCodePackage/Bounds.java b/org/omg/CORBA/TypeCodePackage/Bounds.java index cd48706bc..16954e034 100644 --- a/org/omg/CORBA/TypeCodePackage/Bounds.java +++ b/org/omg/CORBA/TypeCodePackage/Bounds.java @@ -40,8 +40,8 @@ package org.omg.CORBA.TypeCodePackage; import java.io.Serializable; -import org.omg.CORBA.IDLEntity; import org.omg.CORBA.UserException; +import org.omg.CORBA.portable.IDLEntity; /** * The {@link org.omg.CORBA.TypeCode#member_name(int) }, |