/[classpath]/classpath/javax/rmi/CORBA/ClassDesc.java
ViewVC logotype

Diff of /classpath/javax/rmi/CORBA/ClassDesc.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by gnu_andrew, Tue Aug 2 20:12:36 2005 UTC revision 1.1.2.2 by gnu_andrew, Wed Nov 2 00:43:40 2005 UTC
# Line 1  Line 1 
1  /* ClassDesc.java --  /* ClassDesc.java --
2     Copyright (C) 2002 Free Software Foundation, Inc.     Copyright (C) 2002, 2005 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 40  package javax.rmi.CORBA; Line 40  package javax.rmi.CORBA;
40    
41  import java.io.Serializable;  import java.io.Serializable;
42    
43  public class ClassDesc  /**
44    implements Serializable   * This class is used to marshal java.lang.Class objects over IIOP.
45     * When used as a parameter type, return type, or data member, the Java Class
46     * is mapped to the OMG IDL type ::javax::rmi::CORBA::ClassDesc.
47     *
48     * @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
49     */
50    public class ClassDesc implements Serializable
51  {  {
52    /*    /**
53     * The following is serialized form required by Java API Doc     * Use serialVersionUID (V1.4) for interoperability.
54     */     */
55    private String repid;    private static final long serialVersionUID = -3477057297839810709L;
56    private String codebase;  
57      /**
58       * The class repository Id.
59       */
60      String repid;
61        
62    public ClassDesc()    /**
63    {     * Space separeted list of URL's from where the code can be downloaded.
64    }     */
65      String codebase;
66  }  }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26