You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
600 B
38 lines
600 B
/*
|
|
* Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA.portable;
|
|
|
|
/**
|
|
* An interface with no members whose only purpose is to serve as a marker
|
|
* indicating that an implementing class is a
|
|
* Java value type from IDL that has a corresponding Helper class.
|
|
* RMI IIOP serialization looks for such a marker to perform
|
|
* marshalling/unmarshalling.
|
|
**/
|
|
public interface IDLEntity extends java.io.Serializable {
|
|
|
|
}
|