Imported GNU Classpath 0.90

Imported GNU Classpath 0.90
       * scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale.

       * sources.am: Regenerated.
       * gcj/javaprims.h: Regenerated.
       * Makefile.in: Regenerated.
       * gcj/Makefile.in: Regenerated.
       * include/Makefile.in: Regenerated.
       * testsuite/Makefile.in: Regenerated.

       * gnu/java/lang/VMInstrumentationImpl.java: New override.
       * gnu/java/net/local/LocalSocketImpl.java: Likewise.
       * gnu/classpath/jdwp/VMMethod.java: Likewise.
       * gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest
       interface.
       * java/lang/Thread.java: Add UncaughtExceptionHandler.
       * java/lang/reflect/Method.java: Implements GenericDeclaration and
       isSynthetic(),
       * java/lang/reflect/Field.java: Likewise.
       * java/lang/reflect/Constructor.java
       * java/lang/Class.java: Implements Type, GenericDeclaration,
       getSimpleName() and getEnclosing*() methods.
       * java/lang/Class.h: Add new public methods.
       * java/lang/Math.java: Add signum(), ulp() and log10().
       * java/lang/natMath.cc (log10): New function.
       * java/security/VMSecureRandom.java: New override.
       * java/util/logging/Logger.java: Updated to latest classpath
       version.
       * java/util/logging/LogManager.java: New override.

From-SVN: r113887
This commit is contained in:
Mark Wielaard 2006-05-18 17:29:21 +00:00
parent eaec4980e1
commit 4f9533c772
1640 changed files with 126485 additions and 104808 deletions

View file

@ -1,5 +1,5 @@
/* ACTIVITY_COMPLETED.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class ACTIVITY_COMPLETED
public final class ACTIVITY_COMPLETED
extends SystemException
implements Serializable
{
@ -63,7 +63,7 @@ public class ACTIVITY_COMPLETED
/**
* Creates ACTIVITY_COMPLETED with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public ACTIVITY_COMPLETED(String message)
{

View file

@ -1,5 +1,5 @@
/* ACTIVITY_REQUIRED.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class ACTIVITY_REQUIRED
public final class ACTIVITY_REQUIRED
extends SystemException
implements Serializable
{
@ -61,7 +61,7 @@ public class ACTIVITY_REQUIRED
/**
* Creates ACTIVITY_REQUIRED with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public ACTIVITY_REQUIRED(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_CONTEXT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BAD_CONTEXT
public final class BAD_CONTEXT
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class BAD_CONTEXT
/**
* Creates a BAD_CONTEXT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public BAD_CONTEXT(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_INV_ORDER.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BAD_INV_ORDER
public final class BAD_INV_ORDER
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class BAD_INV_ORDER
/**
* Creates a BAD_INV_ORDER with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public BAD_INV_ORDER(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_OPERATION.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -114,7 +114,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BAD_OPERATION
public final class BAD_OPERATION
extends SystemException
implements Serializable
{
@ -127,7 +127,7 @@ public class BAD_OPERATION
* Creates a BAD_OPERATION with the default minor code of 0, completion state
* COMPLETED_NO and the given explaining message.
*
* @param reasom the explaining message.
* @param message the explaining message.
*/
public BAD_OPERATION(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_PARAM.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,14 +45,14 @@ import java.io.Serializable;
* illegal.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BAD_PARAM
public final class BAD_PARAM
extends SystemException
implements Serializable
{
/**
* Creates BAD_PARAM with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public BAD_PARAM(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_QOS.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class BAD_QOS
public final class BAD_QOS
extends SystemException
implements Serializable
{
@ -60,7 +60,7 @@ public class BAD_QOS
/**
* Creates BAD_QOS with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public BAD_QOS(String message)
{

View file

@ -1,5 +1,5 @@
/* BAD_TYPECODE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BAD_TYPECODE
public final class BAD_TYPECODE
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class BAD_TYPECODE
/**
* Creates a BAD_TYPECODE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public BAD_TYPECODE(String message)
{

View file

@ -1,5 +1,5 @@
/* CODESET_INCOMPATIBLE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -43,16 +43,16 @@ import java.io.Serializable;
/**
* Raised when client and server are unable to reach any consensus on which
* code set should be used to represent the characters. This happens when
* neither server nor client cannot convert from the native code set of the
* neither server nor client can convert from the native code set of the
* corresponding side, there is no shared codeset from that both sides could
* convert and additionally the client and server* native sets are too
* different to communicate anyway without the massive data loss.
* convert and additionally the client and server native code sets are too
* different to communicate anyway without massive data loss.
*
* @since 1.5
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class CODESET_INCOMPATIBLE
public final class CODESET_INCOMPATIBLE
extends SystemException
implements Serializable
{
@ -64,7 +64,7 @@ public class CODESET_INCOMPATIBLE
/**
* Creates CODESET_INCOMPATIBLE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public CODESET_INCOMPATIBLE(String message)
{

View file

@ -1,5 +1,5 @@
/* COMM_FAILURE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class COMM_FAILURE
public final class COMM_FAILURE
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class COMM_FAILURE
/**
* Creates a COMM_FAILURE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public COMM_FAILURE(String message)
{

View file

@ -1,5 +1,5 @@
/* CompletionStatus.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import org.omg.CORBA.portable.IDLEntity;
* when the exception has been thrown.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class CompletionStatus
public final class CompletionStatus
implements Serializable, IDLEntity
{
/**

View file

@ -1,5 +1,5 @@
/* CurrentHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class CurrentHolder
public final class CurrentHolder
implements Streamable
{
/**
@ -56,7 +56,7 @@ public class CurrentHolder
public Current value;
/**
* Create the unitialised instance, leaving the value field
* Create the uninitialised instance, leaving the value field
* with default <code>null</code> value.
*/
public CurrentHolder()
@ -74,7 +74,7 @@ public class CurrentHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* DATA_CONVERSION.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -66,7 +66,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class DATA_CONVERSION
public final class DATA_CONVERSION
extends SystemException
implements Serializable
{
@ -78,7 +78,7 @@ public class DATA_CONVERSION
/**
* Creates a DATA_CONVERSION with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public DATA_CONVERSION(String message)
{

View file

@ -1,5 +1,5 @@
/* Invalid.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class Invalid
public final class Invalid
extends UserException
implements Serializable, IDLEntity
{

View file

@ -1,5 +1,5 @@
/* InvalidSeq.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class InvalidSeq
public final class InvalidSeq
extends UserException
implements Serializable, IDLEntity
{

View file

@ -1,5 +1,5 @@
/* InvalidValue.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class InvalidValue
public final class InvalidValue
extends UserException
implements Serializable, IDLEntity
{

View file

@ -1,5 +1,5 @@
/* TypeMismatch.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class TypeMismatch
public final class TypeMismatch
extends UserException
implements Serializable, IDLEntity
{

View file

@ -1,5 +1,5 @@
/* FREE_MEM.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,11 +41,11 @@ package org.omg.CORBA;
import java.io.Serializable;
/**
* Means errors, related to freing the allocated memory.
* Means errors, related to freeing the allocated memory.
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class FREE_MEM
public final class FREE_MEM
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class FREE_MEM
/**
* Creates a FREE_MEM with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public FREE_MEM(String message)
{

View file

@ -1,5 +1,5 @@
/* IMP_LIMIT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,12 +41,12 @@ package org.omg.CORBA;
import java.io.Serializable;
/**
* Means that the server have reached some implementation limit
* Means that the server has reached some implementation limit
* (too many clients, too many references, too long parameters and so on).
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class IMP_LIMIT
public final class IMP_LIMIT
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class IMP_LIMIT
/**
* Creates a IMP_LIMIT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public IMP_LIMIT(String message)
{

View file

@ -1,5 +1,5 @@
/* INITIALIZE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,11 +41,11 @@ package org.omg.CORBA;
import java.io.Serializable;
/**
* Mans that the server cannot be initialized because of the some reason.
* Means that the server cannot be initialized because of the some reason.
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INITIALIZE
public final class INITIALIZE
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INITIALIZE
/**
* Creates a INITIALIZE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INITIALIZE(String message)
{

View file

@ -1,5 +1,5 @@
/* INTERNAL.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,11 +41,11 @@ package org.omg.CORBA;
import java.io.Serializable;
/**
* Means the internal failure in ORB.
* Means an internal failure in the ORB.
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INTERNAL
public final class INTERNAL
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INTERNAL
/**
* Creates a INTERNAL with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INTERNAL(String message)
{

View file

@ -1,5 +1,5 @@
/* INTF_REPOS.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INTF_REPOS
public final class INTF_REPOS
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INTF_REPOS
/**
* Creates a INTF_REPOS with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INTF_REPOS(String message)
{

View file

@ -1,5 +1,5 @@
/* INVALID_ACTIVITY.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class INVALID_ACTIVITY
public final class INVALID_ACTIVITY
extends SystemException
implements Serializable
{
@ -61,7 +61,7 @@ public class INVALID_ACTIVITY
/**
* Creates INVALID_ACTIVITY with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public INVALID_ACTIVITY(String message)
{

View file

@ -1,5 +1,5 @@
/* INVALID_TRANSACTION.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INVALID_TRANSACTION
public final class INVALID_TRANSACTION
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INVALID_TRANSACTION
/**
* Creates a INVALID_TRANSACTION with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INVALID_TRANSACTION(String message)
{

View file

@ -1,5 +1,5 @@
/* INV_FLAG.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INV_FLAG
public final class INV_FLAG
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INV_FLAG
/**
* Creates a INV_FLAG with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INV_FLAG(String message)
{

View file

@ -1,5 +1,5 @@
/* INV_IDENT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INV_IDENT
public final class INV_IDENT
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INV_IDENT
/**
* Creates a INV_IDENT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INV_IDENT(String message)
{

View file

@ -1,5 +1,5 @@
/* INV_OBJREF.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INV_OBJREF
public final class INV_OBJREF
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class INV_OBJREF
/**
* Creates a INV_OBJREF with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INV_OBJREF(String message)
{

View file

@ -1,5 +1,5 @@
/* INV_POLICY.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class INV_POLICY
public final class INV_POLICY
extends SystemException
implements Serializable
{
@ -59,7 +59,7 @@ public class INV_POLICY
/**
* Creates a INV_POLICY with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public INV_POLICY(String message)
{

View file

@ -1,5 +1,5 @@
/* MARSHAL.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -268,7 +268,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class MARSHAL
public final class MARSHAL
extends SystemException
implements Serializable
{
@ -281,7 +281,7 @@ public class MARSHAL
* Creates a MARSHAL with the default minor code of 0, completion state
* COMPLETED_NO and the given explaining message.
*
* @param reasom the explaining message.
* @param message the explaining message.
*/
public MARSHAL(String message)
{

View file

@ -1,5 +1,5 @@
/* NO_IMPLEMENT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class NO_IMPLEMENT
public final class NO_IMPLEMENT
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class NO_IMPLEMENT
/**
* Creates a NO_IMPLEMENT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public NO_IMPLEMENT(String message)
{

View file

@ -1,5 +1,5 @@
/* NO_MEMORY.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class NO_MEMORY
public final class NO_MEMORY
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class NO_MEMORY
/**
* Creates a NO_MEMORY with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public NO_MEMORY(String message)
{

View file

@ -1,5 +1,5 @@
/* NO_PERMISSION.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class NO_PERMISSION
public final class NO_PERMISSION
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class NO_PERMISSION
/**
* Creates a NO_PERMISSION with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public NO_PERMISSION(String message)
{

View file

@ -1,5 +1,5 @@
/* NO_RESOURCES.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -76,7 +76,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class NO_RESOURCES
public final class NO_RESOURCES
extends SystemException
implements Serializable
{
@ -89,7 +89,7 @@ public class NO_RESOURCES
* Creates a NO_RESOURCES with the default minor code of 0, completion state
* COMPLETED_NO and the given explaining message.
*
* @param reasom the explaining message.
* @param message the explaining message.
*/
public NO_RESOURCES(String message)
{

View file

@ -1,5 +1,5 @@
/* NO_RESPONSE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class NO_RESPONSE
public final class NO_RESPONSE
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class NO_RESPONSE
/**
* Creates a NO_RESPONSE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public NO_RESPONSE(String message)
{

View file

@ -1,5 +1,5 @@
/* OBJECT_NOT_EXIST.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,10 +41,10 @@ package org.omg.CORBA;
import java.io.Serializable;
/**
* Means an attempt to perform some operation of the deleted object.
* Means an attempt to perform some operation on a deleted object.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class OBJECT_NOT_EXIST
public final class OBJECT_NOT_EXIST
extends SystemException
implements Serializable
{
@ -56,7 +56,7 @@ public class OBJECT_NOT_EXIST
/**
* Creates a OBJECT_NOT_EXIST with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public OBJECT_NOT_EXIST(String message)
{

View file

@ -1,5 +1,5 @@
/* OBJ_ADAPTER.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class OBJ_ADAPTER
public final class OBJ_ADAPTER
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class OBJ_ADAPTER
/**
* Creates a OBJ_ADAPTER with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public OBJ_ADAPTER(String message)
{

View file

@ -673,17 +673,7 @@ public abstract class ORB
* @see #create_recursive_tc(String)
* @see #create_sequence_tc(int, TypeCode)
*/
public TypeCode create_recursive_sequence_tc(int bound, int offset)
{
RecordTypeCode r = new RecordTypeCode(TCKind.tk_struct);
for (int i = 0; i < offset; i++)
r.add(new StructMember());
TypeCode recurs = new PrimitiveTypeCode(TCKind.tk_sequence);
r.add(new StructMember("", recurs, null));
return r;
}
public abstract TypeCode create_recursive_sequence_tc(int bound, int offset);
/**
* Create a typecode which serves as a placeholder for typcode, containing
@ -789,10 +779,7 @@ public abstract class ORB
* @throws NO_IMPLEMENT for the Singleton ORB, returned by
* the parameterless {@link #init()}.
*/
public Context get_default_context()
{
return new gnuContext("", null);
}
public abstract Context get_default_context();
/**
* Return thg typecode, representing the given primitive object type.

View file

@ -1,5 +1,5 @@
/* InconsistentTypeCode.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class InconsistentTypeCode
public final class InconsistentTypeCode
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* InvalidName.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import org.omg.CORBA.portable.IDLEntity;
* which there is no initial reference.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class InvalidName
public final class InvalidName
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* PERSIST_STORE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class PERSIST_STORE
public final class PERSIST_STORE
extends SystemException
implements Serializable
{

View file

@ -1,5 +1,5 @@
/* ParameterMode.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -78,17 +78,17 @@ public class ParameterMode
/**
* This value means that the parameter is an IN parameter.
*/
public static ParameterMode PARAM_IN = new ParameterMode(_PARAM_IN);
public static final ParameterMode PARAM_IN = new ParameterMode(_PARAM_IN);
/**
* This value means that the parameter is an OUT parameter.
*/
public static ParameterMode PARAM_OUT = new ParameterMode(_PARAM_OUT);
public static final ParameterMode PARAM_OUT = new ParameterMode(_PARAM_OUT);
/**
* This value means that the parameter is an INOUT parameter.
*/
public static ParameterMode PARAM_INOUT = new ParameterMode(_PARAM_INOUT);
public static final ParameterMode PARAM_INOUT = new ParameterMode(_PARAM_INOUT);
/**
* The value of this parameter mode instance.

View file

@ -1,5 +1,5 @@
/* ParameterModeHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -43,7 +43,7 @@ package org.omg.CORBA;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class ParameterModeHolder
public final class ParameterModeHolder
implements org.omg.CORBA.portable.Streamable
{
/**
@ -52,7 +52,7 @@ public class ParameterModeHolder
public ParameterMode value;
/**
* Create the unitialised instance.
* Create the uninitialised instance.
*/
public ParameterModeHolder()
{
@ -68,7 +68,7 @@ public class ParameterModeHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*/
public void _read(org.omg.CORBA.portable.InputStream in)
{

View file

@ -1,5 +1,5 @@
/* PolicyError.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class PolicyError
public final class PolicyError
extends UserException
implements IDLEntity, Serializable
{
@ -69,7 +69,7 @@ public class PolicyError
private static final long serialVersionUID = -9196809779974700103L;
/**
* Constructs an unitialised instance of the policy error.
* Constructs an uninitialised instance of the policy error.
*/
public PolicyError()
{

View file

@ -1,5 +1,5 @@
/* PolicyErrorHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.Streamable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class PolicyErrorHolder implements Streamable
public final class PolicyErrorHolder implements Streamable
{
/**
* The stored PolicyError value.
@ -56,7 +56,7 @@ public class PolicyErrorHolder implements Streamable
public PolicyError value;
/**
* Create the unitialised instance, leaving the value field
* Create the uninitialised instance, leaving the value field
* with default <code>null</code> value.
*/
public PolicyErrorHolder()
@ -74,7 +74,7 @@ public class PolicyErrorHolder implements Streamable
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* PolicyHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class PolicyHolder
public final class PolicyHolder
implements Streamable
{
/**
@ -56,7 +56,7 @@ public class PolicyHolder
public Policy value;
/**
* Create the unitialised instance, leaving the value field
* Create the uninitialised instance, leaving the value field
* with default <code>null</code> value.
*/
public PolicyHolder()
@ -74,7 +74,7 @@ public class PolicyHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
* Delegates work to {@link PolicyHelper}.
*
* @param input the org.omg.CORBA.portable stream to read.

View file

@ -1,5 +1,5 @@
/* PolicyListHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -43,11 +43,11 @@ import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;
/**
* A holder for the object {@link Policy[]}.
* A holder for the object <code>Policy[]</code>.
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class PolicyListHolder
public final class PolicyListHolder
implements Streamable
{
/**
@ -56,7 +56,7 @@ public class PolicyListHolder
public Policy[] value;
/**
* Create the unitialised instance, leaving the value field
* Create the uninitialised instance, leaving the value field
* with default <code>null</code> value.
*/
public PolicyListHolder()
@ -74,7 +74,7 @@ public class PolicyListHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
* Uses {@link PolicyListHelper}.
*
* @param input the org.omg.CORBA.portable stream to read.

View file

@ -1,5 +1,5 @@
/* REBIND.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class REBIND
public final class REBIND
extends SystemException
implements Serializable
{
@ -60,7 +60,7 @@ public class REBIND
/**
* Creates REBIND with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public REBIND(String message)
{

View file

@ -1,5 +1,5 @@
/* SystemException.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class SystemException
public abstract class SystemException
extends RuntimeException
implements Serializable
{

View file

@ -1,5 +1,5 @@
/* TIMEOUT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TIMEOUT
public final class TIMEOUT
extends SystemException
implements Serializable
{
@ -59,7 +59,7 @@ public class TIMEOUT
/**
* Creates TIMEOUT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public TIMEOUT(String message)
{

View file

@ -1,5 +1,5 @@
/* TRANSACTION_MODE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TRANSACTION_MODE
public final class TRANSACTION_MODE
extends SystemException
implements Serializable
{
@ -60,7 +60,7 @@ public class TRANSACTION_MODE
/**
* Creates TRANSACTION_MODE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public TRANSACTION_MODE(String message)
{

View file

@ -1,5 +1,5 @@
/* TRANSACTION_REQUIRED.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,7 +45,7 @@ import java.io.Serializable;
* active transaction is required.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class TRANSACTION_REQUIRED
public final class TRANSACTION_REQUIRED
extends SystemException
implements Serializable
{
@ -57,7 +57,7 @@ public class TRANSACTION_REQUIRED
/**
* Creates a TRANSACTION_REQUIRED with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public TRANSACTION_REQUIRED(String message)
{

View file

@ -1,5 +1,5 @@
/* TRANSACTION_ROLLEDBACK.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class TRANSACTION_ROLLEDBACK
public final class TRANSACTION_ROLLEDBACK
extends SystemException
implements Serializable
{
@ -58,7 +58,7 @@ public class TRANSACTION_ROLLEDBACK
/**
* Creates a TRANSACTION_ROLLEDBACK with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public TRANSACTION_ROLLEDBACK(String message)
{

View file

@ -1,5 +1,5 @@
/* TRANSACTION_UNAVAILABLE.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TRANSACTION_UNAVAILABLE
public final class TRANSACTION_UNAVAILABLE
extends SystemException
implements Serializable
{
@ -60,7 +60,7 @@ public class TRANSACTION_UNAVAILABLE
/**
* Creates TRANSACTION_UNAVAILABLE with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reason the explaining message.
* @param message the explaining message.
*/
public TRANSACTION_UNAVAILABLE(String message)
{

View file

@ -1,5 +1,5 @@
/* TRANSIENT.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,14 +46,14 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class TRANSIENT
public final class TRANSIENT
extends SystemException
implements Serializable
{
/**
* Creates a TRANSIENT with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public TRANSIENT(String message)
{

View file

@ -1,5 +1,5 @@
/* TypeCodeHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class TypeCodeHolder
public final class TypeCodeHolder
implements Streamable
{
/**
@ -87,7 +87,7 @@ public class TypeCodeHolder
}
/**
* Fill in the {@link value } field by reading the required data
* Fill in the {@link #value} field by reading the required data
* from the given stream. For <code>TypeCode</code>, the functionality
* is delegated to
* {@link org.omg.CORBA.portable.InputStream#read_TypeCode}.
@ -109,7 +109,7 @@ public class TypeCodeHolder
}
/**
* Write the {@link value } field to the given stream.
* Write the {@link #value} field to the given stream.
* For <code>TypeCode</code>, the functionality
* is delegated to
* {@link org.omg.CORBA.portable.OutputStream#write_TypeCode(TypeCode) }.

View file

@ -1,5 +1,5 @@
/* BadKind.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BadKind
public final class BadKind
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* Bounds.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -52,7 +52,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class Bounds
public final class Bounds
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* UNKNOWN.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -44,7 +44,7 @@ import java.io.Serializable;
* Means that the operation implementation has thrown a non-CORBA exception.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class UNKNOWN
public final class UNKNOWN
extends SystemException
implements Serializable
{
@ -56,7 +56,7 @@ public class UNKNOWN
/**
* Creates a UNKNOWN with the default minor code of 0,
* completion state COMPLETED_NO and the given explaining message.
* @param reasom the explaining message.
* @param message the explaining message.
*/
public UNKNOWN(String message)
{

View file

@ -1,5 +1,5 @@
/* UnionMember.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.IDLEntity;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class UnionMember
public final class UnionMember
implements IDLEntity, Serializable
{
/**
@ -87,6 +87,7 @@ public class UnionMember
* Creates a union member.
*
* @param a_name member name.
* @param a_label member label.
* @param a_type member type code.
* @param a_type_def member IDL type definition.
*/

View file

@ -1,5 +1,5 @@
/* UnknownUserException.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,11 +47,11 @@ import java.io.Serializable;
* on remote side and returned by the server. The instance of this
* class is returned by {@link Request#env()}.
*
* @see Environment#exception().
* @see Environment#exception()
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class UnknownUserException
public final class UnknownUserException
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* UnknownUserExceptionHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.Streamable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class UnknownUserExceptionHolder implements Streamable
public final class UnknownUserExceptionHolder implements Streamable
{
/**
* The stored UnknownUserException value.
@ -74,7 +74,7 @@ public class UnknownUserExceptionHolder implements Streamable
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* UserException.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -46,7 +46,7 @@ import org.omg.CORBA.portable.IDLEntity;
* The root class for CORBA IDL-defined user exceptions.
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class UserException
public abstract class UserException
extends Exception
implements IDLEntity, Serializable
{
@ -59,7 +59,7 @@ public class UserException
/**
* Constructs a the exception.
*/
public UserException()
protected UserException()
{
}
@ -67,7 +67,7 @@ public class UserException
* Constructs the exception, explaining the reason of throwing it.
* @param reason a string, explaining, why the exception has been thrown.
*/
public UserException(String reason)
protected UserException(String reason)
{
super(reason);
}

View file

@ -1,5 +1,5 @@
/* ValueMember.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class ValueMember
public final class ValueMember
implements Serializable, IDLEntity
{
/**

View file

@ -1,5 +1,5 @@
/* WrongTransactionHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class WrongTransactionHolder implements Streamable
public final class WrongTransactionHolder implements Streamable
{
/**
* The stored WrongTransaction value.
@ -74,7 +74,7 @@ public class WrongTransactionHolder implements Streamable
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* RemarshalException.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,7 +48,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class RemarshalException
public final class RemarshalException
extends Exception
implements Serializable
{

View file

@ -1,5 +1,5 @@
/* NamingContext.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package org.omg.CosNaming;
import org.omg.CORBA.portable.IDLEntity;
import org.omg.CosNaming.NamingContextPackage.AlreadyBound;
import org.omg.CosNaming.NamingContextPackage.CannotProceed;
import org.omg.CosNaming.NamingContextPackage.InvalidName;
@ -55,7 +54,6 @@ import org.omg.CosNaming.NamingContextPackage.NotFound;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface NamingContextOperations
extends IDLEntity
{
/**
* Gives the object a name, valid in this context.

View file

@ -1,5 +1,5 @@
/* _BindingIteratorStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -77,7 +77,7 @@ public class _BindingIteratorStub
/**
* Create the stub that used the given delegate.
*/
public _BindingIteratorStub(Delegate delegate)
_BindingIteratorStub(Delegate delegate)
{
super();
_set_delegate(delegate);

View file

@ -1,5 +1,5 @@
/* _NamingContextExtStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -99,7 +99,7 @@ public class _NamingContextExtStub
/**
* Create the naming context stub with the given delegate.
*/
public _NamingContextExtStub(Delegate delegate)
_NamingContextExtStub(Delegate delegate)
{
super(delegate);
}

View file

@ -1,5 +1,5 @@
/* _NamingContextStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -39,7 +39,6 @@ exception statement from your version. */
package org.omg.CosNaming;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.ORB;
import org.omg.CORBA.ObjectHelper;
import org.omg.CORBA.portable.ApplicationException;
import org.omg.CORBA.portable.Delegate;
@ -85,7 +84,7 @@ public class _NamingContextStub
/**
* Create the naming context stub with the given delegate.
*/
public _NamingContextStub(Delegate delegate)
_NamingContextStub(Delegate delegate)
{
super();
_set_delegate(delegate);
@ -415,7 +414,7 @@ public class _NamingContextStub
* @throws NotFound if the id matches.
* @throws MARSHAL if the id does not match any of the previous 4 exceptions.
*/
protected void throw4(InputStream in, String id)
void throw4(InputStream in, String id)
throws MARSHAL, InvalidName, CannotProceed, NotFound
{
if (id.equals(NotFoundHelper.id()))
@ -443,7 +442,7 @@ public class _NamingContextStub
* @throws NotFound if the id matches.
* @throws MARSHAL if the id does not match any of the previous 4 exceptions.
*/
protected void throw5(InputStream in, String id)
void throw5(InputStream in, String id)
throws MARSHAL, AlreadyBound, InvalidName, CannotProceed,
NotFound
{

View file

@ -1,5 +1,5 @@
/* Parameter.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -48,11 +48,11 @@ import java.io.Serializable;
* When representing the information about a request,
* defines a one of the arguments for the operation being invoked.
*
* @see org.omg.PortableInterceptor.RequestInfoOperation#arguments()
* @see org.omg.PortableInterceptor.RequestInfoOperations#arguments()
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class Parameter
public final class Parameter
implements IDLEntity, Serializable
{
/**
@ -73,7 +73,7 @@ public class Parameter
public ParameterMode mode;
/**
* Create the unitialised instance.
* Create the uninitialised instance.
*/
public Parameter()
{

View file

@ -1,5 +1,5 @@
/* InconsistentTypeCode.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -54,7 +54,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithiania (AudriusA@Bioinformatics.org)
*/
public class InconsistentTypeCode
public final class InconsistentTypeCode
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* InvalidValue.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class InvalidValue
public final class InvalidValue
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* TypeMismatch.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,7 +51,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TypeMismatch
public final class TypeMismatch
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* _DynAnyFactoryStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -40,20 +40,19 @@ package org.omg.DynamicAny;
import gnu.CORBA.Minor;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyFactoryPackage.InconsistentTypeCode;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on
* DynAnyFactory. As DynAny can never be remote at least till 1.5 inclusive,
* this class is not in use. DynAnyFactory should be obtained from the
* {@link ORB#resolve_initial_references}.
* {@link org.omg.CORBA.ORB#resolve_initial_references}.
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
@ -78,14 +77,6 @@ public class _DynAnyFactoryStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynAnyFactoryStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/

View file

@ -1,5 +1,5 @@
/* _DynAnyStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,16 +38,15 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynAny. As
* DynAny can never be remote at least till 1.5 inclusive, this class is
@ -76,14 +75,6 @@ public class _DynAnyStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynAnyStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/

View file

@ -1,5 +1,5 @@
/* _DynArrayStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,14 +38,15 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynArray. As
* DynArray can never be remote at least till 1.5 inclusive, this class is
@ -54,7 +55,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynArrayStub
extends _DynAnyStub
extends ObjectImpl
implements DynArray, Serializable
{
/**
@ -74,14 +75,6 @@ public class _DynArrayStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynArrayStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -131,4 +124,543 @@ public class _DynArrayStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynEnumStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,12 +38,15 @@ exception statement from your version. */
package org.omg.DynamicAny;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.portable.Delegate;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
/**
* Should provide support for remote invocation of methods on DynEnum. As
* DynEnum can never be remote at least till 1.5 inclusive, this class is
@ -52,7 +55,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynEnumStub
extends _DynAnyStub
extends ObjectImpl
implements DynEnum, Serializable
{
/**
@ -72,14 +75,6 @@ public class _DynEnumStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynEnumStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -129,4 +124,543 @@ public class _DynEnumStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynFixedStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,13 +38,15 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynFixed. As
* DynFixed can never be remote at least till 1.5 inclusive, this class is
@ -53,7 +55,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynFixedStub
extends _DynAnyStub
extends ObjectImpl
implements DynFixed, Serializable
{
/**
@ -73,14 +75,6 @@ public class _DynFixedStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynFixedStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -109,4 +103,543 @@ public class _DynFixedStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynSequenceStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,14 +38,16 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynSequence. As
* DynSequence can never be remote at least till 1.5 inclusive, this class is
@ -54,7 +56,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynSequenceStub
extends _DynAnyStub
extends ObjectImpl
implements DynSequence, Serializable
{
/**
@ -76,14 +78,6 @@ public class _DynSequenceStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynSequenceStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -154,4 +148,543 @@ public class _DynSequenceStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynStructStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,14 +38,17 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TCKind;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynStruct. As
* DynStruct can never be remote at least till 1.5 inclusive, this class is
@ -54,7 +57,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynStructStub
extends _DynAnyStub
extends ObjectImpl
implements DynStruct, Serializable
{
/**
@ -76,14 +79,6 @@ public class _DynStructStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynStructStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -155,4 +150,543 @@ public class _DynStructStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynUnionStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,14 +38,17 @@ exception statement from your version. */
package org.omg.DynamicAny;
import java.io.Serializable;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TCKind;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
import java.io.Serializable;
/**
* Should provide support for remote invocation of methods on DynUnion. As
* DynUnion can never be remote at least till 1.5 inclusive, this class is
@ -54,7 +57,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynUnionStub
extends _DynAnyStub
extends ObjectImpl
implements DynUnion, Serializable
{
/**
@ -76,14 +79,6 @@ public class _DynUnionStub
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynUnionStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -187,4 +182,543 @@ public class _DynUnionStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* _DynValueStub.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -38,9 +38,12 @@ exception statement from your version. */
package org.omg.DynamicAny;
import org.omg.CORBA.Any;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.TCKind;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.Delegate;
import org.omg.CORBA.portable.ObjectImpl;
import org.omg.DynamicAny.DynAnyPackage.InvalidValue;
import org.omg.DynamicAny.DynAnyPackage.TypeMismatch;
@ -54,7 +57,7 @@ import java.io.Serializable;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class _DynValueStub
extends _DynAnyStub
extends ObjectImpl
implements DynValue, Serializable
{
/**
@ -70,20 +73,12 @@ public class _DynValueStub
/**
* Create the DynValue stub. To get the stub working,
* you must later set the delegate with
* {@link ObjectImpl#_set_delegate(Delegate)}.
* {@link org.omg.CORBA.portable.ObjectImpl#_set_delegate(Delegate)}.
*/
public _DynValueStub()
{
}
/**
* Create the naming context stub with the given delegate.
*/
public _DynValueStub(Delegate delegate)
{
_set_delegate(delegate);
}
/**
* Return the array of repository ids for this object.
*/
@ -187,4 +182,543 @@ public class _DynValueStub
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode type()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean next()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void destroy()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny copy()
{
return this;
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void rewind()
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void assign(DynAny _0)
throws TypeMismatch
{
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int component_count()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny current_component()
throws TypeMismatch
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean equal(DynAny _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void from_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any get_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean get_boolean()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_char()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public double get_double()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public DynAny get_dyn_any()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public float get_float()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_long()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_longlong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public byte get_octet()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public org.omg.CORBA.Object get_reference()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_short()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_string()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public TypeCode get_typecode()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public int get_ulong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public long get_ulonglong()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public short get_ushort()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Serializable get_val()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public char get_wchar()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public String get_wstring()
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_any(Any _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_boolean(boolean _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_char(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_double(double _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_dyn_any(DynAny _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_float(float _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_long(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_longlong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_octet(byte _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_reference(org.omg.CORBA.Object _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_short(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_string(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_typecode(TypeCode _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulong(int _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ulonglong(long _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_ushort(short _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_val(Serializable _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wchar(char _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public void insert_wstring(String _0)
throws TypeMismatch, InvalidValue
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public boolean seek(int _0)
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
/**
* The remote call of DynAny methods is not possible.
*
* @throws MARSHAL, always.
*/
public Any to_any()
{
throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE);
}
}

View file

@ -1,5 +1,5 @@
/* UnknownEncoding.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -50,7 +50,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithiania (AudriusA@Bioinformatics.org)
*/
public class UnknownEncoding
public final class UnknownEncoding
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* FormatMismatch.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -52,7 +52,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithiania (AudriusA@Bioinformatics.org)
*/
public class FormatMismatch
public final class FormatMismatch
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* InvalidTypeForEncoding.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -53,7 +53,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithiania (AudriusA@Bioinformatics.org)
*/
public class InvalidTypeForEncoding
public final class InvalidTypeForEncoding
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* TypeMismatch.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -50,7 +50,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithiania (AudriusA@Bioinformatics.org)
*/
public class TypeMismatch
public final class TypeMismatch
extends UserException
implements IDLEntity, Serializable
{

View file

@ -1,5 +1,5 @@
/* Encoding.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -50,7 +50,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class Encoding
public final class Encoding
implements IDLEntity, Serializable
{
/**

View file

@ -1,5 +1,5 @@
/* IOR.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -51,9 +51,10 @@ import java.io.Serializable;
* for the same object or indicate that the object is equal to null.
* </p><p>
* The IOR is a standard structure, transferred when sending an object with
* {@link org.omg.CORBA.portable.OutputStream#write_Object} and receiving with
* {@link org.omg.CORBA.portable.InputStream#read_Object}. The stringified
* object references, managed by {@link org.omg.CORBA.ORB#string_to_object}
* {@link org.omg.CORBA.portable.OutputStream#write_Object(org.omg.CORBA.Object)}
* and receiving with {@link org.omg.CORBA.portable.InputStream#read_Object()}.
* The stringified object references, managed by
* {@link org.omg.CORBA.ORB#string_to_object}
* and {@link org.omg.CORBA.ORB#object_to_string} are also IORs, where the
* initially binary data are encoded as strings using hexadecimal notation.
* </p><p>
@ -67,7 +68,7 @@ import java.io.Serializable;
* gnu.CORBA.IOR. The reason is that IORs are required from 1.2, but only
* in 1.4 the associated classes appear in the public API.
*/
public class IOR
public final class IOR
implements IDLEntity, Serializable
{
/**

View file

@ -1,5 +1,5 @@
/* IORHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class IORHolder
public final class IORHolder
implements Streamable
{
/**
@ -74,7 +74,7 @@ public class IORHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* MultipleComponentProfileHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -45,11 +45,11 @@ import org.omg.CORBA.portable.OutputStream;
/**
* A holder for the sequence of {@link TaggedComponent}
* ({@link MultipleComponentProfile}).
* ({@link org.omg.IOP.MultipleComponentProfileHelper}).
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class MultipleComponentProfileHolder
public final class MultipleComponentProfileHolder
implements Streamable
{
/**
@ -76,7 +76,7 @@ public class MultipleComponentProfileHolder
}
/**
* Read the {@link value} array from the CDR stream.
* Read the {@link #value} array from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* ServiceContextHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class ServiceContextHolder
public final class ServiceContextHolder
implements Streamable
{
/**
@ -74,7 +74,7 @@ public class ServiceContextHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* ServiceContextListHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class ServiceContextListHolder
public final class ServiceContextListHolder
implements Streamable
{
/**
@ -74,7 +74,7 @@ public class ServiceContextListHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* TaggedComponent.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -56,7 +56,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TaggedComponent
public final class TaggedComponent
implements IDLEntity, Serializable
{
/**

View file

@ -1,5 +1,5 @@
/* TaggedComponentHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.OutputStream;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TaggedComponentHolder
public final class TaggedComponentHolder
implements Streamable
{
/**
@ -74,7 +74,7 @@ public class TaggedComponentHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* TaggedProfile.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -72,7 +72,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TaggedProfile
public final class TaggedProfile
implements IDLEntity, Serializable
{
/**

View file

@ -1,5 +1,5 @@
/* TaggedProfileHolder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -47,7 +47,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class TaggedProfileHolder
public final class TaggedProfileHolder
implements Streamable
{
/**
@ -74,7 +74,7 @@ public class TaggedProfileHolder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* SyncScopeHelper.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -55,15 +55,11 @@ import org.omg.CORBA.portable.OutputStream;
*
* @see SYNC_WITH_TRANSPORT
*/
public class SyncScopeHelper
public abstract class SyncScopeHelper
{
/**
* A cached typecode value, computed only once.
*/
private static TypeCode typecode;
/**
* Delegates call to {@link Any.extract_short()}.
* Delegates call to {@link Any#extract_short()}.
*/
public static short extract(Any a)
{
@ -81,7 +77,7 @@ public class SyncScopeHelper
}
/**
* Delegates call to {@link Any.insert_short(short)}.
* Delegates call to {@link Any#insert_short(short)}.
*/
public static void insert(Any a, short that)
{
@ -89,7 +85,7 @@ public class SyncScopeHelper
}
/**
* Delegates call to {@link InputStream.read_short()}.
* Delegates call to {@link InputStream#read_short()}.
*/
public static short read(InputStream istream)
{
@ -112,7 +108,7 @@ public class SyncScopeHelper
}
/**
* Delegates call to {@link OutputStream.write_short()}.
* Delegates call to {@link OutputStream#write_short(short)}.
*/
public static void write(OutputStream ostream, short value)
{

View file

@ -1,5 +1,5 @@
/* ForwardRequest.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -50,7 +50,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class ForwardRequest extends UserException implements IDLEntity,
public final class ForwardRequest extends UserException implements IDLEntity,
Serializable
{
/**

View file

@ -1,5 +1,5 @@
/* IORInterceptor_3_0Holder.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import org.omg.CORBA.portable.Streamable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class IORInterceptor_3_0Holder
public final class IORInterceptor_3_0Holder
implements Streamable
{
/**
@ -77,7 +77,7 @@ public class IORInterceptor_3_0Holder
}
/**
* Fill in the {@link value} by data from the CDR stream.
* Fill in the {@link #value} by data from the CDR stream.
*
* @param input the org.omg.CORBA.portable stream to read.
*/

View file

@ -1,5 +1,5 @@
/* InvalidSlot.java --
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -49,7 +49,7 @@ import java.io.Serializable;
*
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public class InvalidSlot extends UserException implements IDLEntity,
public final class InvalidSlot extends UserException implements IDLEntity,
Serializable
{
/**

Some files were not shown because too many files have changed in this diff Show more