8079075: some docs cleanup for CORBA - part 1

Some fix for CORBA docs

Reviewed-by: rriggs
This commit is contained in:
Alexander Stepanov 2015-05-05 15:17:13 +04:00
parent cbb7a567ca
commit 9e57400034
86 changed files with 155 additions and 397 deletions

View File

@ -222,7 +222,7 @@ public class AnyImpl extends Any
/** /**
* returns the type of the element contained in the Any. * returns the type of the element contained in the Any.
* *
* @result the TypeCode for the element in the Any * @return the TypeCode for the element in the Any
*/ */
public TypeCode type() { public TypeCode type() {
return typeCode; return typeCode;
@ -267,7 +267,7 @@ public class AnyImpl extends Any
* checks for equality between Anys. * checks for equality between Anys.
* *
* @param otherAny the Any to be compared with. * @param otherAny the Any to be compared with.
* @result true if the Anys are equal, false otherwise. * @return true if the Anys are equal, false otherwise.
*/ */
public boolean equal(Any otherAny) public boolean equal(Any otherAny)
{ {
@ -508,7 +508,7 @@ public class AnyImpl extends Any
/** /**
* returns an output stream that an Any value can be marshaled into. * returns an output stream that an Any value can be marshaled into.
* *
* @result the OutputStream to marshal value of Any into * @return the OutputStream to marshal value of Any into
*/ */
public org.omg.CORBA.portable.OutputStream create_output_stream() public org.omg.CORBA.portable.OutputStream create_output_stream()
{ {
@ -525,7 +525,7 @@ public class AnyImpl extends Any
/** /**
* returns an input stream that an Any value can be marshaled out of. * returns an input stream that an Any value can be marshaled out of.
* *
* @result the InputStream to marshal value of Any out of. * @return the InputStream to marshal value of Any out of.
*/ */
public org.omg.CORBA.portable.InputStream create_input_stream() public org.omg.CORBA.portable.InputStream create_input_stream()
{ {

View File

@ -166,7 +166,7 @@ public class CDROutputObject extends CorbaOutputObject
* Write the contents of the CDROutputStream to the specified * Write the contents of the CDROutputStream to the specified
* output stream. Has the side-effect of pushing any current * output stream. Has the side-effect of pushing any current
* Message onto the Message list. * Message onto the Message list.
* @param s The output stream to write to. * @param connection The output stream to write to.
*/ */
public void writeTo(CorbaConnection connection) public void writeTo(CorbaConnection connection)
throws java.io.IOException throws java.io.IOException

View File

@ -54,8 +54,9 @@ import com.sun.corba.se.spi.logging.CORBALogDomains;
* use NIO ByteBuffer and NIO CharBuffer, the interaction * use NIO ByteBuffer and NIO CharBuffer, the interaction
* and interface between this class and the CDR streams * and interface between this class and the CDR streams
* should be looked at more closely for optimizations to * should be looked at more closely for optimizations to
* avoid unnecessary copying of data between char[] & * avoid unnecessary copying of data between
* CharBuffer and byte[] & ByteBuffer, especially * {@code char[] & CharBuffer} and
* {@code byte[] & ByteBuffer}, especially
* DirectByteBuffers. * DirectByteBuffers.
* *
*/ */

View File

@ -33,7 +33,6 @@ import org.omg.CORBA_2_3.portable.OutputStream;
import com.sun.corba.se.spi.ior.Identifiable ; import com.sun.corba.se.spi.ior.Identifiable ;
/** /**
* @author
* This is used for unknown components and profiles. A TAG_MULTICOMPONENT_PROFILE will be represented this way. * This is used for unknown components and profiles. A TAG_MULTICOMPONENT_PROFILE will be represented this way.
*/ */
public abstract class GenericIdentifiable implements Identifiable public abstract class GenericIdentifiable implements Identifiable

View File

@ -34,9 +34,6 @@ import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;
import com.sun.corba.se.spi.ior.TaggedComponent ; import com.sun.corba.se.spi.ior.TaggedComponent ;
/**
* @author
*/
public class GenericTaggedComponent extends GenericIdentifiable public class GenericTaggedComponent extends GenericIdentifiable
implements TaggedComponent implements TaggedComponent
{ {
@ -52,8 +49,6 @@ public class GenericTaggedComponent extends GenericIdentifiable
/** /**
* @return org.omg.IOP.TaggedComponent * @return org.omg.IOP.TaggedComponent
* @exception
* @author
*/ */
public org.omg.IOP.TaggedComponent getIOPComponent( ORB orb ) public org.omg.IOP.TaggedComponent getIOPComponent( ORB orb )
{ {

View File

@ -39,9 +39,6 @@ import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;
import com.sun.corba.se.impl.encoding.EncapsOutputStream ; import com.sun.corba.se.impl.encoding.EncapsOutputStream ;
/**
* @author
*/
public class GenericTaggedProfile extends GenericIdentifiable implements TaggedProfile public class GenericTaggedProfile extends GenericIdentifiable implements TaggedProfile
{ {
private ORB orb ; private ORB orb ;

View File

@ -47,7 +47,6 @@ import com.sun.corba.se.spi.orb.ORB ;
/** /**
* This class is a container of TaggedProfileTemplates. * This class is a container of TaggedProfileTemplates.
* @author
*/ */
public class IORTemplateImpl extends IdentifiableContainerBase implements IORTemplate public class IORTemplateImpl extends IdentifiableContainerBase implements IORTemplate
{ {

View File

@ -31,7 +31,7 @@ import org.omg.CORBA_2_3.portable.OutputStream ;
/** ObjectAdapterIdNumber is used to represent pre-JDK 1.4 POA adapter /** ObjectAdapterIdNumber is used to represent pre-JDK 1.4 POA adapter
* IDs. The POA ID was simply represented as a single integer, which was * IDs. The POA ID was simply represented as a single integer, which was
* mapped to the actual POA instance. Here, we just represent these * mapped to the actual POA instance. Here, we just represent these
* internally as arrays of the form { "OldRootPOA", "<number>" }, * internally as arrays of the form {@code { "OldRootPOA", "<number>" }},
* and provide an extra method to get the number back. * and provide an extra method to get the number back.
*/ */
public class ObjectAdapterIdNumber extends ObjectAdapterIdArray { public class ObjectAdapterIdNumber extends ObjectAdapterIdArray {

View File

@ -29,9 +29,6 @@ import java.util.Arrays ;
import com.sun.corba.se.spi.ior.ObjectId ; import com.sun.corba.se.spi.ior.ObjectId ;
import org.omg.CORBA_2_3.portable.OutputStream ; import org.omg.CORBA_2_3.portable.OutputStream ;
/**
* @author
*/
public final class ObjectIdImpl implements ObjectId public final class ObjectIdImpl implements ObjectId
{ {
private byte[] id; private byte[] id;

View File

@ -47,9 +47,6 @@ import com.sun.corba.se.impl.encoding.EncapsOutputStream ;
import com.sun.corba.se.impl.logging.IORSystemException ; import com.sun.corba.se.impl.logging.IORSystemException ;
/**
* @author
*/
public abstract class ObjectKeyTemplateBase implements ObjectKeyTemplate public abstract class ObjectKeyTemplateBase implements ObjectKeyTemplate
{ {
// Fixed constants for Java IDL object key template forms // Fixed constants for Java IDL object key template forms

View File

@ -42,9 +42,6 @@ import com.sun.corba.se.spi.ior.ObjectAdapterId ;
import com.sun.corba.se.impl.ior.ObjectKeyFactoryImpl ; import com.sun.corba.se.impl.ior.ObjectKeyFactoryImpl ;
/**
* @author
*/
public final class POAObjectKeyTemplate extends NewObjectKeyTemplateBase public final class POAObjectKeyTemplate extends NewObjectKeyTemplateBase
{ {
/** This constructor reads the template ONLY from the stream. /** This constructor reads the template ONLY from the stream.

View File

@ -245,7 +245,7 @@ public class StubIORImpl
/** /**
* Returns a string representation of this stub. Returns the same string * Returns a string representation of this stub. Returns the same string
* for all stubs that represent the same remote object. * for all stubs that represent the same remote object.
* "SimpleIORImpl[<typeName>,[<profileID>]data, ...]" * {@code "SimpleIORImpl[<typeName>,[<profileID>]data, ...]"}
* @return a string representation of this stub. * @return a string representation of this stub.
*/ */
public String toString() public String toString()

View File

@ -33,9 +33,6 @@ import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;
import org.omg.CORBA_2_3.portable.InputStream ; import org.omg.CORBA_2_3.portable.InputStream ;
/**
* @author
*/
public class TaggedProfileFactoryFinderImpl extends public class TaggedProfileFactoryFinderImpl extends
IdentifiableFactoryFinderBase IdentifiableFactoryFinderBase
{ {

View File

@ -38,9 +38,6 @@ import com.sun.corba.se.impl.encoding.CodeSetComponentInfo ;
import com.sun.corba.se.impl.encoding.MarshalOutputStream ; import com.sun.corba.se.impl.encoding.MarshalOutputStream ;
import com.sun.corba.se.impl.encoding.MarshalInputStream ; import com.sun.corba.se.impl.encoding.MarshalInputStream ;
/**
* @author
*/
public class CodeSetsComponentImpl extends TaggedComponentBase public class CodeSetsComponentImpl extends TaggedComponentBase
implements CodeSetsComponent implements CodeSetsComponent
{ {

View File

@ -32,9 +32,6 @@ import org.omg.CORBA_2_3.portable.OutputStream ;
import com.sun.corba.se.spi.ior.iiop.IIOPAddress ; import com.sun.corba.se.spi.ior.iiop.IIOPAddress ;
/**
* @author
*/
abstract class IIOPAddressBase implements IIOPAddress abstract class IIOPAddressBase implements IIOPAddress
{ {
// Ports are marshalled as shorts on the wire. The IDL // Ports are marshalled as shorts on the wire. The IDL

View File

@ -32,9 +32,6 @@ import org.omg.CORBA_2_3.portable.OutputStream ;
import com.sun.corba.se.spi.orbutil.closure.Closure ; import com.sun.corba.se.spi.orbutil.closure.Closure ;
/**
* @author
*/
public final class IIOPAddressClosureImpl extends IIOPAddressBase public final class IIOPAddressClosureImpl extends IIOPAddressBase
{ {
private Closure host; private Closure host;

View File

@ -36,9 +36,6 @@ import com.sun.corba.se.spi.logging.CORBALogDomains ;
import com.sun.corba.se.impl.logging.IORSystemException ; import com.sun.corba.se.impl.logging.IORSystemException ;
/**
* @author
*/
public final class IIOPAddressImpl extends IIOPAddressBase public final class IIOPAddressImpl extends IIOPAddressBase
{ {
private ORB orb ; private ORB orb ;

View File

@ -76,9 +76,6 @@ import com.sun.corba.se.impl.util.JDKBridge;
import com.sun.corba.se.impl.logging.IORSystemException; import com.sun.corba.se.impl.logging.IORSystemException;
/**
* @author
*/
public class IIOPProfileImpl extends IdentifiableBase implements IIOPProfile public class IIOPProfileImpl extends IdentifiableBase implements IIOPProfile
{ {
private ORB orb ; private ORB orb ;

View File

@ -55,7 +55,6 @@ import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;
import com.sun.corba.se.spi.orb.ORB ; import com.sun.corba.se.spi.orb.ORB ;
/** /**
* @author
* If getMinorVersion==0, this does not contain any tagged components * If getMinorVersion==0, this does not contain any tagged components
*/ */
public class IIOPProfileTemplateImpl extends TaggedProfileTemplateBase public class IIOPProfileTemplateImpl extends TaggedProfileTemplateBase

View File

@ -33,9 +33,6 @@ import com.sun.corba.se.spi.ior.TaggedComponentBase ;
import com.sun.corba.se.spi.ior.iiop.JavaCodebaseComponent ; import com.sun.corba.se.spi.ior.iiop.JavaCodebaseComponent ;
/**
* @author
*/
public class JavaCodebaseComponentImpl extends TaggedComponentBase public class JavaCodebaseComponentImpl extends TaggedComponentBase
implements JavaCodebaseComponent implements JavaCodebaseComponent
{ {

View File

@ -92,7 +92,7 @@ public abstract class BindingIteratorImpl extends BindingIteratorPOA
* Return the next n bindings. It also returns true or false, indicating * Return the next n bindings. It also returns true or false, indicating
* whether there were more bindings. * whether there were more bindings.
* @param how_many The number of requested bindings in the BindingList. * @param how_many The number of requested bindings in the BindingList.
* @param bl The BindingList as an out parameter. * @param blh The BindingList as an out parameter.
* @return true if there were more bindings. * @return true if there were more bindings.
* @exception org.omg.CORBA.SystemException One of a fixed set of CORBA * @exception org.omg.CORBA.SystemException One of a fixed set of CORBA
* system exceptions. * system exceptions.

View File

@ -90,7 +90,7 @@ public class NamingUtils {
/** /**
* Create a error print stream to the supplied file. * Create a error print stream to the supplied file.
* @param logFile the file to which error messages will go. * @param errFile the file to which error messages will go.
* @exception IOException thrown if the file cannot be opened for output. * @exception IOException thrown if the file cannot be opened for output.
*/ */
public static void makeErrStream(File errFile) public static void makeErrStream(File errFile)

View File

@ -33,7 +33,7 @@ import com.sun.corba.se.spi.logging.CORBALogDomains;
* will be stored in this object. This object is capable of storing CorbaLoc * will be stored in this object. This object is capable of storing CorbaLoc
* profiles as defined in the CorbaName grammer. * profiles as defined in the CorbaName grammer.
* *
* @Author Hemanth * @author Hemanth
*/ */
public class CorbanameURL extends INSURLBase public class CorbanameURL extends INSURLBase
{ {

View File

@ -32,7 +32,7 @@ import com.sun.corba.se.impl.orbutil.ORBConstants;
* host information used in creating the Service Object reference * host information used in creating the Service Object reference
* from the -ORBInitDef and -ORBDefaultInitDef definitions. * from the -ORBInitDef and -ORBDefaultInitDef definitions.
* *
* @Author Hemanth * @author Hemanth
*/ */
public class IIOPEndpointInfo public class IIOPEndpointInfo
{ {

View File

@ -29,7 +29,7 @@ package com.sun.corba.se.impl.naming.namingutil;
* INS URL is a generic interface for two different types of URL's specified * INS URL is a generic interface for two different types of URL's specified
* in INS spec. * in INS spec.
* *
* @Author Hemanth * @author Hemanth
*/ */
public interface INSURL { public interface INSURL {
public boolean getRIRFlag( ); public boolean getRIRFlag( );

View File

@ -30,7 +30,7 @@ import java.util.StringTokenizer;
/** /**
* This class is the entry point to parse different types of INS URL's. * This class is the entry point to parse different types of INS URL's.
* *
* @Author Hemanth * @author Hemanth
*/ */
public class INSURLHandler { public class INSURLHandler {

View File

@ -36,7 +36,7 @@ import com.sun.corba.se.spi.logging.CORBALogDomains;
/** /**
* Utility methods for Naming. * Utility methods for Naming.
* *
* @Author Hemanth * @author Hemanth
*/ */
class Utility { class Utility {
private static NamingSystemException wrapper = private static NamingSystemException wrapper =

View File

@ -186,7 +186,7 @@ public class NameService
/** /**
* getObjectReferenceFromKey returns the Object reference from the objectkey using POA.create_reference_with_id method * getObjectReferenceFromKey returns the Object reference from the objectkey using POA.create_reference_with_id method
* @param Object Key as String * @param Object Key as String
* @returns reference an CORBA.Object. * @return a CORBA.Object reference.
*/ */
org.omg.CORBA.Object getObjectReferenceFromKey( String key ) org.omg.CORBA.Object getObjectReferenceFromKey( String key )
{ {
@ -205,7 +205,7 @@ public class NameService
/** /**
* getObjectKey gets the Object Key from the reference using POA.reference_to_id method * getObjectKey gets the Object Key from the reference using POA.reference_to_id method
* @param reference an CORBA.Object. * @param reference an CORBA.Object.
* @returns Object Key as String * @return Object Key as String
*/ */
String getObjectKey( org.omg.CORBA.Object reference ) String getObjectKey( org.omg.CORBA.Object reference )
{ {

View File

@ -1140,10 +1140,9 @@ public class NamingContextImpl
/** /**
* This operation creates a stringified name from the array of Name * This operation creates a stringified name from the array of Name
* components. * components.
* @param n Name of the object <p> * @param n Name of the object
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName * @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p> * Indicates the name does not identify a binding.
*
*/ */
public String to_string(org.omg.CosNaming.NameComponent[] n) public String to_string(org.omg.CosNaming.NameComponent[] n)
throws org.omg.CosNaming.NamingContextPackage.InvalidName throws org.omg.CosNaming.NamingContextPackage.InvalidName
@ -1167,10 +1166,9 @@ public class NamingContextImpl
/** /**
* This operation converts a Stringified Name into an equivalent array * This operation converts a Stringified Name into an equivalent array
* of Name Components. * of Name Components.
* @param sn Stringified Name of the object <p> * @param sn Stringified Name of the object
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName * @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p> * Indicates the name does not identify a binding.
*
*/ */
public org.omg.CosNaming.NameComponent[] to_name(String sn) public org.omg.CosNaming.NameComponent[] to_name(String sn)
throws org.omg.CosNaming.NamingContextPackage.InvalidName throws org.omg.CosNaming.NamingContextPackage.InvalidName
@ -1204,14 +1202,13 @@ public class NamingContextImpl
* This operation creates a URL based "iiopname://" format name * This operation creates a URL based "iiopname://" format name
* from the Stringified Name of the object. * from the Stringified Name of the object.
* @param addr internet based address of the host machine where * @param addr internet based address of the host machine where
* Name Service is running <p> * Name Service is running
* @param sn Stringified Name of the object <p> * @param sn Stringified Name of the object
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName * @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p> * Indicates the name does not identify a binding.
* @exception org.omg.CosNaming.NamingContextPackage.InvalidAddress * @exception org.omg.CosNaming.NamingContextPackage.InvalidAddress
* Indicates the internet based address of the host machine is * Indicates the internet based address of the host machine is
* incorrect <p> * incorrect
*
*/ */
public String to_url(String addr, String sn) public String to_url(String addr, String sn)
@ -1247,14 +1244,13 @@ public class NamingContextImpl
/** /**
* This operation resolves the Stringified name into the object * This operation resolves the Stringified name into the object
* reference. * reference.
* @param sn Stringified Name of the object <p> * @param sn Stringified Name of the object
* @exception org.omg.CosNaming.NamingContextPackage.NotFound * @exception org.omg.CosNaming.NamingContextPackage.NotFound
* Indicates there is no object reference for the given name. <p> * Indicates there is no object reference for the given name.
* @exception org.omg.CosNaming.NamingContextPackage.CannotProceed * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed
* Indicates that the given compound name is incorrect <p> * Indicates that the given compound name is incorrect
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName * @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p> * Indicates the name does not identify a binding.
*
*/ */
public org.omg.CORBA.Object resolve_str(String sn) public org.omg.CORBA.Object resolve_str(String sn)
throws org.omg.CosNaming.NamingContextPackage.NotFound, throws org.omg.CosNaming.NamingContextPackage.NotFound,

View File

@ -585,7 +585,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
* Create an NVList * Create an NVList
* *
* @param count size of list to create * @param count size of list to create
* @result NVList created * @return NVList created
* *
* @see NVList * @see NVList
*/ */
@ -599,7 +599,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
* Create an NVList corresponding to an OperationDef * Create an NVList corresponding to an OperationDef
* *
* @param oper operation def to use to create list * @param oper operation def to use to create list
* @result NVList created * @return NVList created
* *
* @see NVList * @see NVList
*/ */
@ -612,7 +612,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Create a NamedValue * Create a NamedValue
* *
* @result NamedValue created * @return NamedValue created
*/ */
public synchronized NamedValue create_named_value(String s, Any any, int flags) public synchronized NamedValue create_named_value(String s, Any any, int flags)
{ {
@ -623,7 +623,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Create an ExceptionList * Create an ExceptionList
* *
* @result ExceptionList created * @return ExceptionList created
*/ */
public synchronized org.omg.CORBA.ExceptionList create_exception_list() public synchronized org.omg.CORBA.ExceptionList create_exception_list()
{ {
@ -634,7 +634,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Create a ContextList * Create a ContextList
* *
* @result ContextList created * @return ContextList created
*/ */
public synchronized org.omg.CORBA.ContextList create_context_list() public synchronized org.omg.CORBA.ContextList create_context_list()
{ {
@ -645,7 +645,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Get the default Context object * Get the default Context object
* *
* @result the default Context object * @return the default Context object
*/ */
public synchronized org.omg.CORBA.Context get_default_context() public synchronized org.omg.CORBA.Context get_default_context()
{ {
@ -656,7 +656,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Create an Environment * Create an Environment
* *
* @result Environment created * @return Environment created
*/ */
public synchronized org.omg.CORBA.Environment create_environment() public synchronized org.omg.CORBA.Environment create_environment()
{ {
@ -719,7 +719,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
/** /**
* Get the next request that has gotten a response. * Get the next request that has gotten a response.
* *
* @result the next request ready with a response. * @return the next request ready with a response.
*/ */
public org.omg.CORBA.Request get_next_response() public org.omg.CORBA.Request get_next_response()
throws org.omg.CORBA.WrongTransaction throws org.omg.CORBA.WrongTransaction

View File

@ -35,7 +35,7 @@ package com.sun.corba.se.impl.orbutil ;
* <code>AccessController.doPrivileged</code>. * <code>AccessController.doPrivileged</code>.
* *
* <p>The following code retrieves the value of the system * <p>The following code retrieves the value of the system
* property named <code>"prop"</code> as a privileged action: <p> * property named <code>"prop"</code> as a privileged action:
* *
* <pre> * <pre>
* String s = (String) java.security.AccessController.doPrivileged( * String s = (String) java.security.AccessController.doPrivileged(
@ -67,7 +67,7 @@ public class GetPropertyAction implements java.security.PrivilegedAction {
* value of that property. * value of that property.
* *
* @param theProp the name of the system property. * @param theProp the name of the system property.
* @param defaulVal the default value. * @param defaultVal the default value.
*/ */
public GetPropertyAction(String theProp, String defaultVal) { public GetPropertyAction(String theProp, String defaultVal) {
this.theProp = theProp; this.theProp = theProp;

View File

@ -126,7 +126,6 @@ package com.sun.corba.se.impl.orbutil.concurrent;
* // ... other similar traversal and update methods ... * // ... other similar traversal and update methods ...
* } * }
* </pre> * </pre>
* <p>
* @see Semaphore * @see Semaphore
* <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>] * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
**/ **/

View File

@ -276,10 +276,9 @@ package com.sun.corba.se.impl.orbutil.concurrent;
* For example, you can use an ObservableSync * For example, you can use an ObservableSync
* (perhaps as part of a LayeredSync) in order to obtain callbacks * (perhaps as part of a LayeredSync) in order to obtain callbacks
* before and after each method invocation for a given class. * before and after each method invocation for a given class.
* <p> *
* <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>] * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
**/ **/
public interface Sync { public interface Sync {

View File

@ -59,7 +59,7 @@ public interface Acceptor
/** /**
* Used to determine if an <code>Acceptor</code> has been initialized. * Used to determine if an <code>Acceptor</code> has been initialized.
* *
* @return <code>true</code. if the <code>Acceptor</code> has been * @return <code>true</code> if the <code>Acceptor</code> has been
* initialized. * initialized.
*/ */
public boolean initialized(); public boolean initialized();
@ -74,7 +74,7 @@ public interface Acceptor
/** /**
* Set the * Set the
* {@link com.sun.corba.se.pept.transport.Inbound.ConnectionCache InboundConnectionCache} * {@link com.sun.corba.se.pept.transport.InboundConnectionCache InboundConnectionCache}
* to be used by this <code>Acceptor</code>. * to be used by this <code>Acceptor</code>.
* *
* PEPt uses separate caches for each type of <code>Acceptor</code> * PEPt uses separate caches for each type of <code>Acceptor</code>
@ -88,7 +88,7 @@ public interface Acceptor
/** /**
* Get the * Get the
* {@link com.sun.corba.se.pept.transport.Inbound.ConnectionCache InboundConnectionCache} * {@link com.sun.corba.se.pept.transport.InboundConnectionCache InboundConnectionCache}
* used by this <code>Acceptor</code> * used by this <code>Acceptor</code>
* *
* PEPt uses separate caches for each type of <code>Acceptor</code> * PEPt uses separate caches for each type of <code>Acceptor</code>

View File

@ -44,7 +44,7 @@ import com.sun.corba.se.impl.orbutil.ORBConstants ;
* <ol> * <ol>
* <li>POA current semantics * <li>POA current semantics
* <li>Proper handling of POA destroy. * <li>Proper handling of POA destroy.
* <ol> * </ol>
* POA current semantics requires maintaining a ThreadLocal stack of * POA current semantics requires maintaining a ThreadLocal stack of
* invocation information that is always available for POACurrent operations. * invocation information that is always available for POACurrent operations.
* Maintaining this stack is expensive on the timescale of optimized co-located * Maintaining this stack is expensive on the timescale of optimized co-located

View File

@ -30,8 +30,7 @@ import com.sun.corba.se.spi.legacy.connection.Connection;
/** /**
* This interface is implemented by our implementation of * This interface is implemented by our implementation of
* PortableInterceptor.ClientRequestInfo and * PortableInterceptor.ClientRequestInfo and
* PortableInterceptor.ServerRequestInfo. <p> * PortableInterceptor.ServerRequestInfo.
*
*/ */
public interface RequestInfoExt public interface RequestInfoExt

View File

@ -27,13 +27,9 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* A Cleaner Abstraction to provide a Monitored Attribute of type 'Long' * A Cleaner Abstraction to provide a Monitored Attribute of type 'Long'
* </p>
*/ */
public abstract class LongMonitoredAttributeBase extends MonitoredAttributeBase { public abstract class LongMonitoredAttributeBase extends MonitoredAttributeBase {
@ -42,20 +38,14 @@ public abstract class LongMonitoredAttributeBase extends MonitoredAttributeBase
/** /**
* <p>
* Constructs LongMonitoredAttribute, by creating the * Constructs LongMonitoredAttribute, by creating the
* MonitoredAttributeInfo with 'Long' as the class type. * MonitoredAttributeInfo with 'Long' as the class type.
* Users are expected to extend this class and provide the implementation * Users are expected to extend this class and provide the implementation
* for getValue() and if needed clearState() as well. * for getValue() and if needed clearState() as well.
* </p>
* <p>
* *
* @param name of tthe MonitoredAttribute * @param name of the MonitoredAttribute
* </p>
* <p>
* @param description of the Attribute, Please provid a well thought out * @param description of the Attribute, Please provid a well thought out
* description, so that the admin can make sense of the attribute supplied. * description, so that the admin can make sense of the attribute supplied.
* </p>
*/ */
public LongMonitoredAttributeBase(String name, String description) { public LongMonitoredAttributeBase(String name, String description) {
super( name ); super( name );

View File

@ -28,15 +28,11 @@ import com.sun.corba.se.spi.monitoring.MonitoredAttributeInfo;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* Monitored Attribute is the interface to represent a Monitorable * Monitored Attribute is the interface to represent a Monitorable
* Attribute. Using this interface, one can get the value of the attribute * Attribute. Using this interface, one can get the value of the attribute
* and set the value if it is a writeable attribute. * and set the value if it is a writeable attribute.
* </p>
*/ */
public interface MonitoredAttribute { public interface MonitoredAttribute {
@ -44,34 +40,25 @@ public interface MonitoredAttribute {
// operations // operations
/** /**
* <p>
* Gets the Monitored Attribute Info for the attribute. * Gets the Monitored Attribute Info for the attribute.
* </p>
* <p>
* *
* @param monitoredAttributeInfo for this Monitored Attribute. * @param monitoredAttributeInfo for this Monitored Attribute.
* </p>
*/ */
public MonitoredAttributeInfo getAttributeInfo(); public MonitoredAttributeInfo getAttributeInfo();
/** /**
* <p>
* Sets the value for the Monitored Attribute if isWritable() is false, the * Sets the value for the Monitored Attribute if isWritable() is false, the
* method will throw ILLEGAL Operation exception. * method will throw ILLEGAL Operation exception.
* *
* Also, the type of 'value' should be same as specified in the * Also, the type of 'value' should be same as specified in the
* MonitoredAttributeInfo for a particular instance. * MonitoredAttributeInfo for a particular instance.
* </p>
* <p>
* *
* @param value should be any one of the Basic Java Type Objects which are * @param value should be any one of the Basic Java Type Objects which are
* Long, Double, Float, String, Integer, Short, Character, Byte. * Long, Double, Float, String, Integer, Short, Character, Byte.
* </p>
*/ */
public void setValue(Object value); public void setValue(Object value);
/** /**
* <p>
* Gets the value of the Monitored Attribute. The value can be obtained * Gets the value of the Monitored Attribute. The value can be obtained
* from different parts of the module. User may choose to delegate the call * from different parts of the module. User may choose to delegate the call
* to getValue() to other variables. * to getValue() to other variables.
@ -79,34 +66,21 @@ public interface MonitoredAttribute {
* NOTE: It is important to make sure that the type of Object returned in * NOTE: It is important to make sure that the type of Object returned in
* getvalue is same as the one specified in MonitoredAttributeInfo for this * getvalue is same as the one specified in MonitoredAttributeInfo for this
* attribute. * attribute.
* </p>
* <p>
*
* </p>
* <p>
* *
* @param value is the current value for this MonitoredAttribute * @param value is the current value for this MonitoredAttribute
* </p>
*/ */
public Object getValue(); public Object getValue();
/** /**
* <p>
* Gets the name of the Monitored Attribute. * Gets the name of the Monitored Attribute.
* </p>
* <p>
* *
* @param name of this Attribute * @return name of this Attribute
* </p>
*/ */
public String getName(); public String getName();
/** /**
* <p>
* If this attribute needs to be cleared, the user needs to implement this * If this attribute needs to be cleared, the user needs to implement this
* method to reset the state to initial state. If the Monitored Attribute * method to reset the state to initial state. If the Monitored Attribute
* doesn't change like for example (ConnectionManager High Water Mark), * doesn't change like for example (ConnectionManager High Water Mark),
* then clearState() is a No Op. * then clearState() is a No Op.
* </p>
*
*/ */
public void clearState(); public void clearState();

View File

@ -27,16 +27,11 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* A Convenient class provided to help users extend and implement only * A Convenient class provided to help users extend and implement only
* getValue(), if there is no need to clear the state and the attribute is not * getValue(), if there is no need to clear the state and the attribute is not
* writable. * writable.
*
* </p>
*/ */
public abstract class MonitoredAttributeBase implements MonitoredAttribute { public abstract class MonitoredAttributeBase implements MonitoredAttribute {
String name; String name;

View File

@ -27,14 +27,10 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* Monitored AttributeInfo contains the meta information of the Monitored * Monitored AttributeInfo contains the meta information of the Monitored
* Attribute. * Attribute.
* </p>
*/ */
public interface MonitoredAttributeInfo { public interface MonitoredAttributeInfo {
@ -42,45 +38,38 @@ public interface MonitoredAttributeInfo {
// operations // operations
/** /**
* <p>
* If the Attribute is writable from ASAdmin then isWritable() will return * If the Attribute is writable from ASAdmin then isWritable() will return
* true. * true.
* </p>
* <p>
* *
* @return a boolean with true or false * @return a boolean with true or false
* </p>
*/ */
public boolean isWritable(); public boolean isWritable();
/** /**
* <p>
* isStatistic() is true if the attribute is presented as a Statistic. * isStatistic() is true if the attribute is presented as a Statistic.
* </p>
* <p>
* *
* @return a boolean with true or false * @return a boolean with true or false
* </p>
*/ */
public boolean isStatistic(); public boolean isStatistic();
/** /**
* <p> * Class Type: We will allow only basic class types:
* Class Type: We will allow only basic class types: 1)Boolean 2)Integer * <ol>
* 3)Byte 4)Long 5)Float 6)Double 7)String 8)Character * <li>Boolean</li>
* </p> * <li>Integer</li>
* <p> * <li>Byte</li>
* <li>Long</li>
* <li>Float</li>
* <li>Double</li>
* <li>String</li>
* <li>Character</li>
* </ol>
* *
* @return a Class Type * @return a Class Type
* </p>
*/ */
public Class type(); public Class type();
/** /**
* <p>
* Get's the description for the Monitored Attribute. * Get's the description for the Monitored Attribute.
* </p>
* <p>
* *
* @return a String with description * @return a String with description
* </p>
*/ */
public String getDescription(); public String getDescription();

View File

@ -25,17 +25,12 @@
package com.sun.corba.se.spi.monitoring; package com.sun.corba.se.spi.monitoring;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* MonitoredAttributeInfoFactory used mostly by internal classes. If the * MonitoredAttributeInfoFactory used mostly by internal classes. If the
* User needs to define some special MonitoredAttributes like a Character * User needs to define some special MonitoredAttributes like a Character
* type Monitored Attribute, they can use this factory to build the meta * type Monitored Attribute, they can use this factory to build the meta
* information. * information.
*
* </p>
*/ */
public interface MonitoredAttributeInfoFactory { public interface MonitoredAttributeInfoFactory {

View File

@ -30,161 +30,101 @@ import java.util.*;
import java.util.Collection; import java.util.Collection;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* Monitored Object provides an Hierarchichal view of the ORB Monitoring * Monitored Object provides an Hierarchichal view of the ORB Monitoring
* System. It can contain multiple children and a single parent. Each * System. It can contain multiple children and a single parent. Each
* Monitored Object may also contain Multiple Monitored Attributes. * Monitored Object may also contain Multiple Monitored Attributes.
* </p>
*/ */
public interface MonitoredObject { public interface MonitoredObject {
/////////////////////////////////////// ///////////////////////////////////////
// operations // operations
/** /**
* <p>
* Gets the name of this MonitoredObject * Gets the name of this MonitoredObject
* </p><p>
* *
* @return a String with name of this Monitored Object * @return a String with name of this Monitored Object
* </p>
*/ */
public String getName(); public String getName();
/** /**
* <p>
* Gets the description of MonitoredObject * Gets the description of MonitoredObject
* </p><p>
* *
* @return a String with Monitored Object Description. * @return a String with Monitored Object Description.
* </p>
*/ */
public String getDescription(); public String getDescription();
/** /**
* <p>
* This method will add a child Monitored Object to this Monitored Object. * This method will add a child Monitored Object to this Monitored Object.
* </p>
* <p>
* </p>
*/ */
public void addChild( MonitoredObject m ); public void addChild( MonitoredObject m );
/** /**
* <p>
* This method will remove child Monitored Object identified by the given name * This method will remove child Monitored Object identified by the given name
* </p> *
* <p>
* @param name of the ChildMonitored Object * @param name of the ChildMonitored Object
* </p>
*/ */
public void removeChild( String name ); public void removeChild( String name );
/** /**
* <p>
* Gets the child MonitoredObject associated with this MonitoredObject * Gets the child MonitoredObject associated with this MonitoredObject
* instance using name as the key. The name should be fully qualified name * instance using name as the key. The name should be fully qualified name
* like orb.connectionmanager * like orb.connectionmanager
* </p>
* <p>
* *
* @return a MonitoredObject identified by the given name * @return a MonitoredObject identified by the given name
* </p>
* <p>
* @param name of the ChildMonitored Object * @param name of the ChildMonitored Object
* </p>
*/ */
public MonitoredObject getChild(String name); public MonitoredObject getChild(String name);
/** /**
* <p>
* Gets all the Children registered under this instance of Monitored * Gets all the Children registered under this instance of Monitored
* Object. * Object.
* </p>
* <p>
* *
* @return Collection of immediate Children associated with this MonitoredObject. * @return Collection of immediate Children associated with this MonitoredObject.
* </p>
*/ */
public Collection getChildren(); public Collection getChildren();
/** /**
* <p>
* Sets the parent for this Monitored Object. * Sets the parent for this Monitored Object.
* </p>
* <p>
* </p>
*/ */
public void setParent( MonitoredObject m ); public void setParent( MonitoredObject m );
/** /**
* <p>
* There will be only one parent for an instance of MontoredObject, this * There will be only one parent for an instance of MontoredObject, this
* call gets parent and returns null if the Monitored Object is the root. * call gets parent and returns null if the Monitored Object is the root.
* </p>
* <p>
* *
* @return a MonitoredObject which is a Parent of this Monitored Object instance * @return a MonitoredObject which is a Parent of this Monitored Object instance
* </p>
*/ */
public MonitoredObject getParent(); public MonitoredObject getParent();
/** /**
* <p>
* Adds the attribute with the given name. * Adds the attribute with the given name.
* </p>
* <p>
* *
* </p>
* <p>
* @param value is the MonitoredAttribute which will be set as one of the * @param value is the MonitoredAttribute which will be set as one of the
* attribute of this MonitoredObject. * attribute of this MonitoredObject.
* </p>
*/ */
public void addAttribute(MonitoredAttribute value); public void addAttribute(MonitoredAttribute value);
/** /**
* <p>
* Removes the attribute with the given name. * Removes the attribute with the given name.
* </p>
* <p>
* *
* </p>
* <p>
* @param name is the MonitoredAttribute name * @param name is the MonitoredAttribute name
* </p>
*/ */
public void removeAttribute(String name); public void removeAttribute(String name);
/** /**
* <p>
* Gets the Monitored Object registered by the given name * Gets the Monitored Object registered by the given name
* </p>
* *
* <p>
* @return a MonitoredAttribute identified by the given name * @return a MonitoredAttribute identified by the given name
* </p>
* <p>
* @param name of the attribute * @param name of the attribute
* </p>
*/ */
public MonitoredAttribute getAttribute(String name); public MonitoredAttribute getAttribute(String name);
/** /**
* <p>
* Gets all the Monitored Attributes for this Monitored Objects. It doesn't * Gets all the Monitored Attributes for this Monitored Objects. It doesn't
* include the Child Monitored Object, that needs to be traversed using * include the Child Monitored Object, that needs to be traversed using
* getChild() or getChildren() call. * getChild() or getChildren() call.
* </p>
* <p>
* *
* @return Collection of all the Attributes for this MonitoredObject * @return Collection of all the Attributes for this MonitoredObject
* </p>
*/ */
public Collection getAttributes(); public Collection getAttributes();
/** /**
* <p>
* Clears the state of all the Monitored Attributes associated with the * Clears the state of all the Monitored Attributes associated with the
* Monitored Object. It will also clear the state on all it's child * Monitored Object. It will also clear the state on all it's child
* Monitored Object. The call to clearState will be initiated from * Monitored Object. The call to clearState will be initiated from
* CORBAMBean.startMonitoring() call. * CORBAMBean.startMonitoring() call.
* </p>
*
*/ */
public void clearState(); public void clearState();

View File

@ -29,17 +29,13 @@ import com.sun.corba.se.impl.monitoring.MonitoredAttributeInfoFactoryImpl;
import com.sun.corba.se.impl.monitoring.MonitoringManagerFactoryImpl; import com.sun.corba.se.impl.monitoring.MonitoringManagerFactoryImpl;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* This is used for getting the default factories for * This is used for getting the default factories for
* MonitoredObject, MonitoredAttributeInfo and MonitoringManager. We do not * MonitoredObject, MonitoredAttributeInfo and MonitoringManager. We do not
* expect users to use the MonitoredAttributeInfo factory most of the time * expect users to use the MonitoredAttributeInfo factory most of the time
* because the Info is automatically built by StringMonitoredAttributeBase * because the Info is automatically built by StringMonitoredAttributeBase
* and LongMonitoredAttributeBase. * and LongMonitoredAttributeBase.
* </p>
*/ */
public class MonitoringFactories { public class MonitoringFactories {
/////////////////////////////////////// ///////////////////////////////////////
@ -57,20 +53,15 @@ public class MonitoringFactories {
// operations // operations
/** /**
* <p>
* Gets the MonitoredObjectFactory * Gets the MonitoredObjectFactory
* </p>
* <p>
* *
* @return a MonitoredObjectFactory * @return a MonitoredObjectFactory
* </p>
*/ */
public static MonitoredObjectFactory getMonitoredObjectFactory( ) { public static MonitoredObjectFactory getMonitoredObjectFactory( ) {
return monitoredObjectFactory; return monitoredObjectFactory;
} }
/** /**
* <p>
* Gets the MonitoredAttributeInfoFactory. The user is not expected to use this * Gets the MonitoredAttributeInfoFactory. The user is not expected to use this
* Factory, since the MonitoredAttributeInfo is internally created by * Factory, since the MonitoredAttributeInfo is internally created by
* StringMonitoredAttributeBase, LongMonitoredAttributeBase and * StringMonitoredAttributeBase, LongMonitoredAttributeBase and
@ -79,11 +70,8 @@ public class MonitoringFactories {
* build a DoubleMonitoredAttributeBase like LongMonitoredAttributeBase * build a DoubleMonitoredAttributeBase like LongMonitoredAttributeBase
* and build a MonitoredAttributeInfo required by MonitoredAttributeBase * and build a MonitoredAttributeInfo required by MonitoredAttributeBase
* internally by using this Factory. * internally by using this Factory.
* </p>
* <p>
* *
* @return a MonitoredAttributeInfoFactory * @return a MonitoredAttributeInfoFactory
* </p>
*/ */
public static MonitoredAttributeInfoFactory public static MonitoredAttributeInfoFactory
getMonitoredAttributeInfoFactory( ) getMonitoredAttributeInfoFactory( )
@ -92,18 +80,14 @@ public class MonitoringFactories {
} }
/** /**
* <p>
* Gets the MonitoredManagerFactory. The user is not expected to use this * Gets the MonitoredManagerFactory. The user is not expected to use this
* Factory, since the ORB will be automatically initialized with the * Factory, since the ORB will be automatically initialized with the
* MonitoringManager. * MonitoringManager.
* *
* User can get hold of MonitoringManager associated with ORB by calling * User can get hold of MonitoringManager associated with ORB by calling
* orb.getMonitoringManager( ) * orb.getMonitoringManager( )
* </p>
* <p>
* *
* @return a MonitoredManagerFactory * @return a MonitoredManagerFactory
* </p>
*/ */
public static MonitoringManagerFactory getMonitoringManagerFactory( ) { public static MonitoringManagerFactory getMonitoringManagerFactory( ) {
return monitoringManagerFactory; return monitoringManagerFactory;

View File

@ -30,15 +30,11 @@ import com.sun.corba.se.spi.monitoring.MonitoredObject;
import java.util.*; import java.util.*;
/** /**
* <p>
* Monitoring Manager will have a 1 to 1 association with the ORB. This * Monitoring Manager will have a 1 to 1 association with the ORB. This
* gives access to the top level Monitored Object, using which more * gives access to the top level Monitored Object, using which more
* Monitored Objects and Attributes can be added and traversed. * Monitored Objects and Attributes can be added and traversed.
* </p>
* <p>
* *
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p>
*/ */
public interface MonitoringManager extends Closeable { public interface MonitoringManager extends Closeable {
@ -46,23 +42,14 @@ public interface MonitoringManager extends Closeable {
// operations // operations
/** /**
* <p>
* Gets the Root Monitored Object which contains a Hierarchy Of Monitored * Gets the Root Monitored Object which contains a Hierarchy Of Monitored
* Objects exposing various Monitorable Attributes of Various modules. * Objects exposing various Monitorable Attributes of Various modules.
* </p>
* <p>
*
* @param MonitoredObject ...
* </p>
*/ */
public MonitoredObject getRootMonitoredObject(); public MonitoredObject getRootMonitoredObject();
/** /**
* <p>
* Initialize is called whenever there is a start monitoring call to CORBA * Initialize is called whenever there is a start monitoring call to CORBA
* MBean. This will result in triaging initialize to all the * MBean. This will result in triaging initialize to all the
* MonitoredObjects and it's Monitored Attributes. * MonitoredObjects and it's Monitored Attributes.
* </p>
*
*/ */
public void clearState(); public void clearState();

View File

@ -25,14 +25,10 @@
package com.sun.corba.se.spi.monitoring; package com.sun.corba.se.spi.monitoring;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* MonitoringObjectFactory is used internally by the ORB, It is not for * MonitoringObjectFactory is used internally by the ORB, It is not for
* general public use. * general public use.
* </p>
*/ */
public interface MonitoringManagerFactory { public interface MonitoringManagerFactory {
/** /**

View File

@ -27,15 +27,11 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* StatisticsMonitoredAttribute is provided as a convenience to collect the * StatisticsMonitoredAttribute is provided as a convenience to collect the
* Statistics of any entity. The getValue() call will be delegated to the * Statistics of any entity. The getValue() call will be delegated to the
* StatisticsAccumulator set by the user. * StatisticsAccumulator set by the user.
* </p>
*/ */
public class StatisticMonitoredAttribute extends MonitoredAttributeBase { public class StatisticMonitoredAttribute extends MonitoredAttributeBase {
@ -55,32 +51,19 @@ public class StatisticMonitoredAttribute extends MonitoredAttributeBase {
/** /**
* <p>
* Constructs the StaisticMonitoredAttribute, builds the required * Constructs the StaisticMonitoredAttribute, builds the required
* MonitoredAttributeInfo with Long as the class type and is always * MonitoredAttributeInfo with Long as the class type and is always
* readonly attribute. * readonly attribute.
* </p>
* <p>
* *
* @param name Of this attribute * @param name Of this attribute
* </p>
* <p>
* @return a StatisticMonitoredAttribute
* </p>
* <p>
* @param desc should provide a good description on the kind of statistics * @param desc should provide a good description on the kind of statistics
* collected, a good example is "Connection Response Time Stats will Provide the * collected, a good example is "Connection Response Time Stats will Provide the
* detailed stats based on the samples provided from every request completion * detailed stats based on the samples provided from every request completion
* time" * time"
* </p>
* <p>
* @param s is the StatisticsAcumulator that user will use to accumulate the * @param s is the StatisticsAcumulator that user will use to accumulate the
* samples and this Attribute Object will get the computed statistics values * samples and this Attribute Object will get the computed statistics values
* from. * from.
* </p>
* <p>
* @param mutex using which clearState() and getValue() calls need to be locked. * @param mutex using which clearState() and getValue() calls need to be locked.
* </p>
*/ */
public StatisticMonitoredAttribute(String name, String desc, public StatisticMonitoredAttribute(String name, String desc,
StatisticsAccumulator s, Object mutex) StatisticsAccumulator s, Object mutex)

View File

@ -27,11 +27,8 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* StatisticsAccumulator accumulates the samples provided by the user and * StatisticsAccumulator accumulates the samples provided by the user and
* computes the value of minimum, maximum, sum and sample square sum. When * computes the value of minimum, maximum, sum and sample square sum. When
* the StatisticMonitoredAttribute calls getValue(), it will compute all * the StatisticMonitoredAttribute calls getValue(), it will compute all
@ -42,7 +39,6 @@ import java.util.*;
* Users can easily extend this class and provide the implementation of * Users can easily extend this class and provide the implementation of
* toString() method to format the stats as desired. By default all the stats * toString() method to format the stats as desired. By default all the stats
* are printed in a single line. * are printed in a single line.
* </p>
*/ */
public class StatisticsAccumulator { public class StatisticsAccumulator {
@ -72,19 +68,12 @@ public class StatisticsAccumulator {
/** /**
* <p>
* User will use this method to just register a sample with the * User will use this method to just register a sample with the
* StatisticsAccumulator. This is the only method that User will use to * StatisticsAccumulator. This is the only method that User will use to
* expose the statistics, internally the StatisticMonitoredAttribute will * expose the statistics, internally the StatisticMonitoredAttribute will
* collect the information when requested from the ASAdmin. * collect the information when requested from the ASAdmin.
* </p>
* <p>
*
* </p>
* <p>
* *
* @param value a double value to make it more precise * @param value a double value to make it more precise
* </p>
*/ */
public void sample(double value) { public void sample(double value) {
sampleCount++; sampleCount++;
@ -137,19 +126,11 @@ public class StatisticsAccumulator {
} }
/** /**
* <p>
* Construct the Statistics Accumulator by providing the unit as a String. * Construct the Statistics Accumulator by providing the unit as a String.
* The examples of units are &quot;Hours&quot;, &quot;Minutes&quot;, * The examples of units are "Hours", "Minutes",
* &quot;Seconds&quot;, &quot;MilliSeconds&quot;, &quot;Micro Seconds&quot; * "Seconds", "MilliSeconds", "Micro Seconds" etc.
* etc.,
* </p>
* <p>
* *
* @return a StatisticsAccumulator with ...
* </p>
* <p>
* @param unit a String representing the units for the samples collected * @param unit a String representing the units for the samples collected
* </p>
*/ */
public StatisticsAccumulator( String unit ) { public StatisticsAccumulator( String unit ) {
this.unit = unit; this.unit = unit;

View File

@ -27,14 +27,10 @@ package com.sun.corba.se.spi.monitoring;
import java.util.*; import java.util.*;
/** /**
* <p>
*
* @author Hemanth Puttaswamy * @author Hemanth Puttaswamy
* </p> *
* <p>
* A Convenient Abstraction to present String type Monitored Attribute. One * A Convenient Abstraction to present String type Monitored Attribute. One
* of the examples of StringMonitoredAttribute is the State information. * of the examples of StringMonitoredAttribute is the State information.
* </p>
*/ */
public abstract class StringMonitoredAttributeBase public abstract class StringMonitoredAttributeBase
extends MonitoredAttributeBase extends MonitoredAttributeBase
@ -45,20 +41,11 @@ public abstract class StringMonitoredAttributeBase
/** /**
* <p>
* Constructs StringMonitoredAttribute with the MonitoredAttributeInfo * Constructs StringMonitoredAttribute with the MonitoredAttributeInfo
* built with the class type of String. * built with the class type of String.
* </p>
* <p>
* *
* @param name of this attribute * @param name of this attribute
* </p>
* <p>
* @param description of this attribute * @param description of this attribute
* </p>
* <p>
* @return a StringMonitoredAttributeBase
* </p>
*/ */
public StringMonitoredAttributeBase(String name, String description) { public StringMonitoredAttributeBase(String name, String description) {
super( name ); super( name );

View File

@ -111,7 +111,7 @@ import com.sun.corba.se.spi.ior.IORTemplate ;
* <li>oa.returnServant()</li> * <li>oa.returnServant()</li>
* <li>oa.exit()</li> * <li>oa.exit()</li>
* <li>pop info</li> * <li>pop info</li>
* <ol> * </ol>
* </li> * </li>
* REVISIT: Is this the required order for exit/pop? Cna they be nested instead? * REVISIT: Is this the required order for exit/pop? Cna they be nested instead?
* Note that getInvocationServant and returnServant may throw exceptions. In such cases, * Note that getInvocationServant and returnServant may throw exceptions. In such cases,

View File

@ -46,8 +46,8 @@ public interface Action
* in the state machine, as the state could be corrupted. * in the state machine, as the state could be corrupted.
* Any exception thrown by the Action for the transition * Any exception thrown by the Action for the transition
* will be propagated to doIt. * will be propagated to doIt.
* @param FSM fsm is the state machine causing this action. * @param fsm the state machine causing this action.
* @param Input in is the input that caused the transition. * @param in the input that caused the transition.
*/ */
public void doIt( FSM fsm, Input in ) ; public void doIt( FSM fsm, Input in ) ;
} }

View File

@ -42,9 +42,8 @@ import com.sun.corba.se.impl.orbutil.ORBUtility ;
* the service context and provides any needed methods for manipulating * the service context and provides any needed methods for manipulating
* the service context. Each subclass must provide the following * the service context. Each subclass must provide the following
* members: * members:
* <p>
* <ul> * <ul>
* </li>a public static final int SERVICE_CONTEXT_ID that gives the OMG * <li>a public static final int SERVICE_CONTEXT_ID that gives the OMG
* (or other) defined id for the service context. This is needed for the * (or other) defined id for the service context. This is needed for the
* registration mechanism defined in ServiceContexts. OMG defined * registration mechanism defined in ServiceContexts. OMG defined
* service context ids are taken from section 13.6.7 of ptc/98-12-04.</li> * service context ids are taken from section 13.6.7 of ptc/98-12-04.</li>

View File

@ -80,7 +80,7 @@ public class AttributeEntry extends MethodEntry
} // generate } // generate
/** Access the attribute generator. /** Access the attribute generator.
@returns an object which implements the AttributeGen interface. @return an object which implements the AttributeGen interface.
@see AttributeGen */ @see AttributeGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -90,7 +90,7 @@ public class ConstEntry extends SymtabEntry
} // generate } // generate
/** Access the constant generator. /** Access the constant generator.
@returns an object which implements the ConstGen interface. @return an object which implements the ConstGen interface.
@see ConstGen */ @see ConstGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -84,7 +84,7 @@ public class EnumEntry extends SymtabEntry
} // generate } // generate
/** Access the enumerator generator. /** Access the enumerator generator.
@returns an object which implements the EnumGen interface. @return an object which implements the EnumGen interface.
@see EnumGen */ @see EnumGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -80,7 +80,7 @@ public class ExceptionEntry extends StructEntry
} // generate } // generate
/** Access the exception generator. /** Access the exception generator.
@returns an object which implements the ExceptionGen interface. @return an object which implements the ExceptionGen interface.
@see ExceptionGen */ @see ExceptionGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -83,7 +83,7 @@ public class ForwardEntry extends SymtabEntry implements InterfaceType
} // generate } // generate
/** Access the interface generator. /** Access the interface generator.
@returns an object which implements the InterfaceGen interface. @return an object which implements the InterfaceGen interface.
@see InterfaceGen */ @see InterfaceGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -79,7 +79,7 @@ public class ForwardValueEntry extends ForwardEntry
} // generate } // generate
/** Access the interface generator. /** Access the interface generator.
@returns an object which implements the ForwardValueGen interface. @return an object which implements the ForwardValueGen interface.
@see ValueGen */ @see ValueGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -81,7 +81,7 @@ public class IncludeEntry extends SymtabEntry
} // generate } // generate
/** Access the Include type generator. /** Access the Include type generator.
@returns an object which implements the IncludeGen interface. @return an object which implements the IncludeGen interface.
@see IncludeGen */ @see IncludeGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -111,7 +111,7 @@ public class InterfaceEntry extends SymtabEntry implements InterfaceType
} // generate } // generate
/** Access the interface generator. /** Access the interface generator.
@returns an object which implements the InterfaceGen interface. @return an object which implements the InterfaceGen interface.
@see InterfaceGen */ @see InterfaceGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -89,7 +89,7 @@ public class MethodEntry extends SymtabEntry
} // generate } // generate
/** Access the method generator. /** Access the method generator.
@returns an object which implements the MethodGen interface. @return an object which implements the MethodGen interface.
@see MethodGen */ @see MethodGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -84,7 +84,7 @@ public class ModuleEntry extends SymtabEntry
} // generate } // generate
/** Access the module generator. /** Access the module generator.
@returns an object which implements the ModuleGen interface. @return an object which implements the ModuleGen interface.
@see ModuleGen */ @see ModuleGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -73,7 +73,7 @@ public class NativeEntry extends SymtabEntry
} // generate } // generate
/** Access the constant generator. /** Access the constant generator.
@returns an object which implements the ConstGen interface. @return an object which implements the ConstGen interface.
@see ConstGen */ @see ConstGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -88,7 +88,7 @@ public class ParameterEntry extends SymtabEntry
} // generate } // generate
/** Access the parameter generator. /** Access the parameter generator.
@returns an object which implements the ParameterGen interface. @return an object which implements the ParameterGen interface.
@see ParameterGen */ @see ParameterGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -80,7 +80,7 @@ public class PragmaEntry extends SymtabEntry
} // generate } // generate
/** Access the Include type generator. /** Access the Include type generator.
@returns an object which implements the IncludeGen interface. @return an object which implements the IncludeGen interface.
@see IncludeGen */ @see IncludeGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -81,7 +81,7 @@ public class PrimitiveEntry extends SymtabEntry
} // generate } // generate
/** Access the primitive type generator. /** Access the primitive type generator.
@returns an object which implements the PrimitiveGen interface. @return an object which implements the PrimitiveGen interface.
@see PrimitiveGen */ @see PrimitiveGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -68,8 +68,8 @@ public class RepositoryID
/** /**
* Determine is a supplied string meets the minimal format requirement * Determine is a supplied string meets the minimal format requirement
* for a Repository ID. * for a Repository ID.
* @return true iff supplied string has form '<format>:<string>', where * @return true if supplied string has form {@code '<format>:<string>'}, where
* <format> is any non-empty string not containing ':'. * {@code <format>} is any non-empty string not containing ':'.
**/ **/
public static boolean hasValidForm (String string) public static boolean hasValidForm (String string)
{ {

View File

@ -101,7 +101,7 @@ public class SequenceEntry extends SymtabEntry
} // generate } // generate
/** Access the sequence generator. /** Access the sequence generator.
@returns an object which implements the SequenceGen interface. @return an object which implements the SequenceGen interface.
@see SequenceGen */ @see SequenceGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -91,7 +91,7 @@ public class StringEntry extends SymtabEntry
} // generate } // generate
/** Access the primitive type generator. /** Access the primitive type generator.
@returns an object which implements the PrimitiveGen interface. @return an object which implements the PrimitiveGen interface.
@see PrimitiveGen */ @see PrimitiveGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -90,7 +90,7 @@ public class StructEntry extends SymtabEntry
} // generate } // generate
/** Access the struct generator. /** Access the struct generator.
@returns an object which implements the StructGen interface. @return an object which implements the StructGen interface.
@see StructGen */ @see StructGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -127,7 +127,7 @@ public class SymtabEntry
/** Get the name of this entry's module. If there are modules within /** Get the name of this entry's module. If there are modules within
modules, each module name is separated by '/'. modules, each module name is separated by '/'.
@returns this entry's module name. */ @return this entry's module name. */
public String module () public String module ()
{ {
return _module; return _module;

View File

@ -97,7 +97,7 @@ public interface SymtabFactory
char, octet, short, long, etc. The reason it is not limited to char, octet, short, long, etc. The reason it is not limited to
these is that, as an extender, you may wish to override these names. these is that, as an extender, you may wish to override these names.
For instance, when generating Java code, octet translates to byte, For instance, when generating Java code, octet translates to byte,
so there is an entry in Compile.overrideNames: <"octet", "byte"> so there is an entry in Compile.overrideNames: {@code <"octet", "byte">}
and a PrimitiveEntry in the symbol table for "byte". */ and a PrimitiveEntry in the symbol table for "byte". */
PrimitiveEntry primitiveEntry (String name); PrimitiveEntry primitiveEntry (String name);

View File

@ -332,7 +332,7 @@ class Token
* @param boolean[] collidesWithKeyword is an array containing one value: a flag * @param boolean[] collidesWithKeyword is an array containing one value: a flag
* representing whether this string is an identifier that collides with a keyword. * representing whether this string is an identifier that collides with a keyword.
* This is set by this method. * This is set by this method.
* @returns Token The resulting Token corresponding to string. * @return Token The resulting Token corresponding to string.
*/ */
public static Token makeKeywordToken( public static Token makeKeywordToken(
String string, float corbaLevel, boolean escapedOK, boolean[] collision ) String string, float corbaLevel, boolean escapedOK, boolean[] collision )

View File

@ -110,7 +110,7 @@ public class TypedefEntry extends SymtabEntry
} }
/** Access the typedef generator. /** Access the typedef generator.
@returns an object which implements the TypedefGen interface. @return an object which implements the TypedefGen interface.
@see TypedefGen */ @see TypedefGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -93,7 +93,7 @@ public class UnionEntry extends SymtabEntry
} // generate } // generate
/** Access the union generator. /** Access the union generator.
@returns an object which implements the UnionGen interface. @return an object which implements the UnionGen interface.
@see UnionGen */ @see UnionGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -77,7 +77,7 @@ public class ValueBoxEntry extends ValueEntry
} // generate } // generate
/** Access the value generator. /** Access the value generator.
@returns an object which implements the ValueGen interface. @return an object which implements the ValueGen interface.
@see ValueGen */ @see ValueGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -86,7 +86,7 @@ public class ValueEntry extends InterfaceEntry
} // generate } // generate
/** Access the value generator. /** Access the value generator.
@returns an object which implements the ValueGen interface. @return an object which implements the ValueGen interface.
@see ValueGen */ @see ValueGen */
public Generator generator () public Generator generator ()
{ {

View File

@ -43,11 +43,11 @@ import java.math.BigInteger;
/** /**
* This class contains values. Objects of this class are the terminal * This class contains values. Objects of this class are the terminal
* nodes of an expression tree. * nodes of an expression tree.
* <b> * <p>
* Note that there is a constructor for Double values, but not Float. * Note that there is a constructor for Double values, but not Float.
* CORBA defines that all floating point expressions are evaluated as * CORBA defines that all floating point expressions are evaluated as
* double, and that the result is coerced back to float if necessary. * double, and that the result is coerced back to float if necessary.
* <b> * <p>
* Note also that there is a constructor for long values, but not for * Note also that there is a constructor for long values, but not for
* int or short. CORBA defines that all integral expressions are evaluated * int or short. CORBA defines that all integral expressions are evaluated
* as unsigned long. A CORBA long is a Java int. There is no unsigned int * as unsigned long. A CORBA long is a Java int. There is no unsigned int

View File

@ -260,7 +260,7 @@ public class Arguments extends com.sun.tools.corba.se.idl.Arguments
} // packageFromProps } // packageFromProps
/** /**
* d57482 <klr> method added so default emitter check could be overriden. * d57482 (klr) method added so default emitter check could be overriden.
**/ **/
protected void setDefaultEmitter () { protected void setDefaultEmitter () {
// If the flag -fclient was not found, assume it. // If the flag -fclient was not found, assume it.

View File

@ -64,7 +64,7 @@ public class AttributeGen24 extends MethodGenClone24
} // ctor } // ctor
/** /**
* <d62023-klr> Added for 2.4 RTF * (d62023-klr) Added for 2.4 RTF
**/ **/
protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {
@ -83,7 +83,7 @@ public class AttributeGen24 extends MethodGenClone24
} // abstractMethod } // abstractMethod
/** /**
* <d62023-klr> Added for 2.4 RTF * (d62023-klr) Added for 2.4 RTF
**/ **/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {

View File

@ -70,7 +70,7 @@ public class Helper24 extends Helper
/** /**
* Generate the heading, including package, imports, class statements, * Generate the heading, including package, imports, class statements,
* and open curly. * and open curly.
* <d62023> - don't implement ValueHelper, make non-boxed helpers abstract * d62023 - don't implement ValueHelper, make non-boxed helpers abstract
**/ **/
protected void writeHeading () protected void writeHeading ()
{ {
@ -92,8 +92,10 @@ public class Helper24 extends Helper
/** /**
* Generate the instance variables. * Generate the instance variables.
* <d62023> - no helper instance except for boxed valuetypes. * <pre>
* - move truncatable_ids to mapped class. * d62023 - no helper instance except for boxed valuetypes;
* - move truncatable_ids to mapped class.
* </pre>
**/ **/
protected void writeInstVars () protected void writeInstVars ()
{ {
@ -110,9 +112,9 @@ public class Helper24 extends Helper
} // writeInstVars } // writeInstVars
/** /**
* <d62023> generate members of BoxedValueHelper interface if boxed * d62023 - generate members of BoxedValueHelper interface if boxed
* *
* <d62023> Hook in here to write factory methods for non-boxed ValueTypes * d62023 - hook in here to write factory methods for non-boxed ValueTypes
* into Helper. * into Helper.
**/ **/
protected void writeValueHelperInterface () protected void writeValueHelperInterface ()
@ -143,8 +145,8 @@ public class Helper24 extends Helper
} // writeHelperFactories } // writeHelperFactories
/** /**
* <d62023> Generate constructors only for boxed valuetype helpers * d62023 - generate constructors only for boxed valuetype helpers.
* All other helpers are abstract. * All other helpers are abstract.
**/ **/
protected void writeCtors () protected void writeCtors ()
{ {

View File

@ -190,17 +190,19 @@ public class InterfaceGen implements com.sun.tools.corba.se.idl.InterfaceGen, Ja
/** /**
* Generate the interface. Provides general algorithm for binding generation: * Generate the interface. Provides general algorithm for binding generation:
* 1.) Initialize members unique to this generator. - init () * <ol>
* 2.) Open print stream - openStream () * <li> Initialize members unique to this generator - init()</li>
* 3.) Write class heading (package, prologue, class statement, open curly - writeHeading () * <li> Open print stream - openStream()</li>
* 4.) Write class body (member data and methods) - write*Body () * <li> Write class heading (package, prologue, class statement, open curly - writeHeading()</li>
* 5.) Write class closing (close curly) - writeClosing () * <li> Write class body (member data and methods) - write*Body()</li>
* 6.) Close the print stream - closeStream () * <li> Write class closing (close curly) - writeClosing()</li>
* <li> Close the print stream - closeStream ()</li>
* </ol>
* *
* For CORBA 2.3, interfaces are mapped to Operations and Signature * For CORBA 2.3, interfaces are mapped to Operations and Signature
* interfaces. The Operations interface contains the method definitions. * interfaces. The Operations interface contains the method definitions.
* The Signature interface extends the Operations interface and adds * The Signature interface extends the Operations interface and adds
* CORBA::Object. <klr> * CORBA::Object. (klr)
**/ **/
protected void generateInterface () protected void generateInterface ()
{ {

View File

@ -96,7 +96,7 @@ public class MethodGen24 extends MethodGen
} }
/** /**
* <d62023> Write the methodEntry for a valuetype factory method into * d62023 - write the methodEntry for a valuetype factory method into
* the Value Helper class. Contents from email from Simon, * the Value Helper class. Contents from email from Simon,
* 4/25/99. * 4/25/99.
**/ **/
@ -135,7 +135,7 @@ public class MethodGen24 extends MethodGen
} // helperFactoryMethod } // helperFactoryMethod
/** /**
* <d62023> - write an abstract method definition * d62023 - write an abstract method definition
**/ **/
protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {
@ -152,8 +152,8 @@ public class MethodGen24 extends MethodGen
} // abstractMethod } // abstractMethod
/** /**
* <d62023> - write a default factory method implementation for the * d62023 - write a default factory method implementation for the
* <value>DefaultFactory. m is a methodEntry for a factory * {@code <value>DefaultFactory}. m is a methodEntry for a factory
* method contained in a non-abstract ValueEntry. * method contained in a non-abstract ValueEntry.
**/ **/
protected void defaultFactoryMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void defaultFactoryMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
@ -176,7 +176,7 @@ public class MethodGen24 extends MethodGen
} // defaultFactoryMethod } // defaultFactoryMethod
/** /**
* <d62023> - remove all valueInitializer junk * d62023 - remove all valueInitializer junk
**/ **/
protected void writeMethodSignature () protected void writeMethodSignature ()
{ {
@ -242,7 +242,7 @@ public class MethodGen24 extends MethodGen
} // writeMethodSignature } // writeMethodSignature
/** /**
* <d62023> - delete method templates for valuetypes * d62023 - delete method templates for valuetypes
**/ **/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {

View File

@ -74,7 +74,7 @@ public class MethodGenClone24 extends AttributeGen
} // ctor } // ctor
/** /**
* <d62023> - write an abstract method definition * d62023 - write an abstract method definition
**/ **/
protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {
@ -91,7 +91,7 @@ public class MethodGenClone24 extends AttributeGen
} // abstractMethod } // abstractMethod
/** /**
* <d62023> - delete method templates for valuetypes * d62023 - delete method templates for valuetypes
**/ **/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{ {

View File

@ -69,7 +69,7 @@ public class ValueBoxGen24 extends ValueBoxGen
} // ctor } // ctor
/** /**
* <d62023> - Move from helper to mapped class * d62023 - Move from helper to mapped class
**/ **/
protected void writeTruncatable () // <d60929> protected void writeTruncatable () // <d60929>
{ {
@ -84,7 +84,7 @@ public class ValueBoxGen24 extends ValueBoxGen
/** /**
* <d62023> * d62023
**/ **/
public void helperRead (String entryName, SymtabEntry entry, PrintWriter stream) public void helperRead (String entryName, SymtabEntry entry, PrintWriter stream)
{ {
@ -144,7 +144,7 @@ public class ValueBoxGen24 extends ValueBoxGen
} // helperWrite } // helperWrite
/** /**
* <d62023> * d62023
**/ **/
public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream)
{ {

View File

@ -73,15 +73,17 @@ public class ValueGen24 extends ValueGen
} // ctor } // ctor
/** /**
* <d62023> - delete constructor; helper is abstract * d62023 - delete constructor; helper is abstract
**/ **/
protected void writeConstructor () protected void writeConstructor ()
{ {
} // writeConstructor } // writeConstructor
/** /**
* <d62023> - delete write_value from non-boxed helpers * <pre>
* - delete _write from non-boxed helpers * d62023 - delete write_value from non-boxed helpers
* - delete _write from non-boxed helpers
* </pre>
**/ **/
public void helperWrite (SymtabEntry entry, PrintWriter stream) public void helperWrite (SymtabEntry entry, PrintWriter stream)
{ {
@ -91,7 +93,7 @@ public class ValueGen24 extends ValueGen
} // helperWrite } // helperWrite
/** /**
* <d62023> * d62023
**/ **/
public void helperRead (String entryName, SymtabEntry entry, PrintWriter stream) public void helperRead (String entryName, SymtabEntry entry, PrintWriter stream)
{ {
@ -101,7 +103,7 @@ public class ValueGen24 extends ValueGen
} // helperRead } // helperRead
/** /**
* <d62023> - suppress initializers from mapped value; now generated in * d62023 - suppress initializers from mapped value; now generated in
* the Helper class and Factory class * the Helper class and Factory class
**/ **/
protected void writeInitializers () protected void writeInitializers ()
@ -110,7 +112,7 @@ public class ValueGen24 extends ValueGen
} // writeInitializers } // writeInitializers
/** /**
* <d62023> - Goes in mapped class, not Helper * d62023 - goes in mapped class, not Helper
**/ **/
protected void writeTruncatable () // <d60929> protected void writeTruncatable () // <d60929>
{ {
@ -155,7 +157,7 @@ public class ValueGen24 extends ValueGen
} }
/** /**
* <d62023> CustomMarshal -> CustomValue for custom valuetypes * d62023 - CustomMarshal {@literal ->} CustomValue for custom valuetypes
* mapped class is abstract * mapped class is abstract
**/ **/
protected void writeHeading () protected void writeHeading ()
@ -217,7 +219,7 @@ public class ValueGen24 extends ValueGen
} // writeHeading } // writeHeading
/** /**
* <d62023> - private state maps to protected, not default * d62023 - private state maps to protected, not default
**/ **/
protected void writeMembers () protected void writeMembers ()
{ {
@ -245,8 +247,7 @@ public class ValueGen24 extends ValueGen
} // writeMembers } // writeMembers
/** /**
* <d62023> Methods need to be abstract * d62023 - methods need to be abstract writeStreamable
* writeStreamable
**/ **/
protected void writeMethods () protected void writeMethods ()
{ {
@ -294,7 +295,7 @@ public class ValueGen24 extends ValueGen
} // writeMethods } // writeMethods
/** /**
* <d62023> Call super._read() * d62023 - call super._read()
**/ **/
public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream)
{ {
@ -335,7 +336,7 @@ public class ValueGen24 extends ValueGen
} // read } // read
/** /**
* <d62023> Call super._write() * d62023 - call super._write()
**/ **/
public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream)
{ {
@ -374,7 +375,7 @@ public class ValueGen24 extends ValueGen
} // write } // write
/** /**
* <62023> - generate factory interface and default factory * d62023 - generate factory interface and default factory
**/ **/
public void generate (Hashtable symbolTable, ValueEntry v, PrintWriter str) public void generate (Hashtable symbolTable, ValueEntry v, PrintWriter str)
{ {

View File

@ -51,7 +51,7 @@ import sun.rmi.rmic.Names;
* conformance checking and name mapping as defined in the "Java to IDL * conformance checking and name mapping as defined in the "Java to IDL
* Mapping" OMG specification. The family is composed of the following * Mapping" OMG specification. The family is composed of the following
* fixed set of types: * fixed set of types:
* <pre> * <pre>{@literal
* *
* +- RemoteType <-- AbstractType * +- RemoteType <-- AbstractType
* | * |
@ -67,7 +67,7 @@ import sun.rmi.rmic.Names;
* | * |
* +- NCClassType * +- NCClassType
* *
* </pre> * }</pre>
* PrimitiveType represents a primitive or a void type. * PrimitiveType represents a primitive or a void type.
* <p> * <p>
* CompoundType is an abstract base representing any non-special class * CompoundType is an abstract base representing any non-special class