diff options
| author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 23:20:01 +0000 |
|---|---|---|
| committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 23:20:01 +0000 |
| commit | 3b3101d8b5ae4f08a16c0b7111da6cad41bbd282 (patch) | |
| tree | a5eb7cf42a51869cc8aa1fad7ad6a90cca47fdd8 /libjava/classpath/javax/rmi/CORBA/ClassDesc.java | |
| parent | 7e55c49d7d91ef9f09e93c1100119b1ab3652446 (diff) | |
| download | ppe42-gcc-3b3101d8b5ae4f08a16c0b7111da6cad41bbd282.tar.gz ppe42-gcc-3b3101d8b5ae4f08a16c0b7111da6cad41bbd282.zip | |
Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated.
* Makefile.in: Likewise.
* scripts/makemake.tcl: Use glob -nocomplain.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107049 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/javax/rmi/CORBA/ClassDesc.java')
| -rw-r--r-- | libjava/classpath/javax/rmi/CORBA/ClassDesc.java | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/libjava/classpath/javax/rmi/CORBA/ClassDesc.java b/libjava/classpath/javax/rmi/CORBA/ClassDesc.java index 01befa49339..c8b38ead095 100644 --- a/libjava/classpath/javax/rmi/CORBA/ClassDesc.java +++ b/libjava/classpath/javax/rmi/CORBA/ClassDesc.java @@ -1,5 +1,5 @@ -/* ClassDesc.java -- - Copyright (C) 2002 Free Software Foundation, Inc. +/* ClassDesc.java -- + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,16 +40,27 @@ package javax.rmi.CORBA; import java.io.Serializable; -public class ClassDesc - implements Serializable +/** + * This class is used to marshal java.lang.Class objects over IIOP. + * When used as a parameter type, return type, or data member, the Java Class + * is mapped to the OMG IDL type ::javax::rmi::CORBA::ClassDesc. + * + * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) + */ +public class ClassDesc implements Serializable { - /* - * The following is serialized form required by Java API Doc + /** + * Use serialVersionUID (V1.4) for interoperability. */ - private String repid; - private String codebase; + private static final long serialVersionUID = -3477057297839810709L; + + /** + * The class repository Id. + */ + String repid; - public ClassDesc() - { - } + /** + * Space separeted list of URL's from where the code can be downloaded. + */ + String codebase; } |

