KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > stub > java > rmi > _Remote_Stub


1 /*
2  * @(#)_Remote_Stub.java 1.16 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 /*
8  * Licensed Materials - Property of IBM
9  * RMI-IIOP v1.0
10  * Copyright IBM Corp. 1998 1999 All Rights Reserved
11  *
12  * US Government Users Restricted Rights - Use, duplication or
13  * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
14  */

15
16 // Stub class generated by rmic, do not edit.
17
// Contents subject to change without notice.
18

19 package org.omg.stub.java.rmi;
20
21 import java.rmi.Remote JavaDoc;
22 import javax.rmi.CORBA.Stub JavaDoc;
23
24 /**
25  * This class provides the Stub for the Remote Type. The class is generated
26  * by the rmic compiler, and is still under works at OMG. It's contents are
27  * subject to change without notice as the specification evolves.
28  */

29 public final class _Remote_Stub extends Stub JavaDoc implements Remote JavaDoc {
30
31     private static final String JavaDoc _type_ids[] = {
32         ""
33     };
34     
35     /**
36      * Returns an array of repository ids that an object implements.
37      * The string at index zero represents the most derived interface. The last id,
38      * for the generic CORBA object is (i.e., IDL:omg.org/CORBA/Object:1.0") is
39      * implied and not present.
40      * @return an array of repository ids that an object implements.
41      */

42     public String JavaDoc[] _ids() {
43         return (String JavaDoc[]) _type_ids.clone();
44     }
45 }
46
Popular Tags