Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 59055 invoked from network); 29 Jun 2010 17:59:44 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 Jun 2010 17:59:44 -0000 Received: (qmail 40709 invoked by uid 500); 29 Jun 2010 17:59:44 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 40667 invoked by uid 500); 29 Jun 2010 17:59:43 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 40660 invoked by uid 99); 29 Jun 2010 17:59:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jun 2010 17:59:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jun 2010 17:59:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A4A972388A67; Tue, 29 Jun 2010 17:58:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r959054 [4/10] - in /activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq: commands/ wireformat/openwire/marshal/generated/ Date: Tue, 29 Jun 2010 17:58:35 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100629175840.A4A972388A67@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Message.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Message.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Message.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Message.h Tue Jun 29 17:58:29 2010 @@ -126,40 +126,14 @@ namespace commands{ virtual ~Message(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual Message* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; /** @@ -168,16 +142,14 @@ namespace commands{ * wire * @param wireFormat - the wireformat controller */ - virtual void beforeMarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ); + virtual void beforeMarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ); /** * Called after unmarshaling is started to cleanup the object being * unmarshaled. * @param wireFormat - the wireformat object to control unmarshaling */ - virtual void afterUnmarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ); + virtual void afterUnmarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ); /** * Indicates that this command is aware of Marshaling, and needs @@ -398,15 +370,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.cpp Tue Jun 29 17:58:29 2010 @@ -299,8 +299,7 @@ void MessageAck::setMessageCount( int me } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer MessageAck::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer MessageAck::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processMessageAck( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageAck.h Tue Jun 29 17:58:29 2010 @@ -73,40 +73,14 @@ namespace commands{ virtual ~MessageAck(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual MessageAck* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getDestination() const; @@ -142,15 +116,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.cpp Tue Jun 29 17:58:29 2010 @@ -222,8 +222,7 @@ void MessageDispatch::setRedeliveryCount } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer MessageDispatch::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer MessageDispatch::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processMessageDispatch( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatch.h Tue Jun 29 17:58:29 2010 @@ -69,40 +69,14 @@ namespace commands{ virtual ~MessageDispatch(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual MessageDispatch* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getConsumerId() const; @@ -127,15 +101,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.cpp Tue Jun 29 17:58:29 2010 @@ -222,8 +222,7 @@ void MessageDispatchNotification::setMes } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer MessageDispatchNotification::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer MessageDispatchNotification::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processMessageDispatchNotification( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageDispatchNotification.h Tue Jun 29 17:58:29 2010 @@ -69,40 +69,14 @@ namespace commands{ virtual ~MessageDispatchNotification(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual MessageDispatchNotification* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getConsumerId() const; @@ -127,15 +101,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageId.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageId.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageId.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessageId.h Tue Jun 29 17:58:29 2010 @@ -79,40 +79,14 @@ namespace commands{ virtual ~MessageId(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual MessageId* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; void setValue( const std::string& key ); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.cpp Tue Jun 29 17:58:29 2010 @@ -243,8 +243,7 @@ void MessagePull::setMessageId( const de } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer MessagePull::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer MessagePull::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processMessagePull( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/MessagePull.h Tue Jun 29 17:58:29 2010 @@ -70,40 +70,14 @@ namespace commands{ virtual ~MessagePull(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual MessagePull* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getConsumerId() const; @@ -125,15 +99,7 @@ namespace commands{ virtual Pointer& getMessageId(); virtual void setMessageId( const Pointer& messageId ); - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/NetworkBridgeFilter.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/NetworkBridgeFilter.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/NetworkBridgeFilter.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/NetworkBridgeFilter.h Tue Jun 29 17:58:29 2010 @@ -65,40 +65,14 @@ namespace commands{ virtual ~NetworkBridgeFilter(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual NetworkBridgeFilter* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int getNetworkTTL() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/PartialCommand.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/PartialCommand.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/PartialCommand.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/PartialCommand.h Tue Jun 29 17:58:29 2010 @@ -64,40 +64,14 @@ namespace commands{ virtual ~PartialCommand(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual PartialCommand* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int getCommandId() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.cpp Tue Jun 29 17:58:29 2010 @@ -162,8 +162,7 @@ void ProducerAck::setSize( int size ) { } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer ProducerAck::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer ProducerAck::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processProducerAck( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerAck.h Tue Jun 29 17:58:29 2010 @@ -65,40 +65,14 @@ namespace commands{ virtual ~ProducerAck(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual ProducerAck* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getProducerId() const; @@ -115,15 +89,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerId.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerId.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerId.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerId.h Tue Jun 29 17:58:29 2010 @@ -74,40 +74,14 @@ namespace commands{ virtual ~ProducerId(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual ProducerId* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; const Pointer& getParentId() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.cpp Tue Jun 29 17:58:29 2010 @@ -248,8 +248,7 @@ void ProducerInfo::setWindowSize( int wi } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer ProducerInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer ProducerInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processProducerInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ProducerInfo.h Tue Jun 29 17:58:29 2010 @@ -71,40 +71,14 @@ namespace commands{ virtual ~ProducerInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual ProducerInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; Pointer createRemoveCommand() const; @@ -134,15 +108,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.cpp Tue Jun 29 17:58:29 2010 @@ -162,8 +162,7 @@ void RemoveInfo::setLastDeliveredSequenc } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer RemoveInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer RemoveInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processRemoveInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveInfo.h Tue Jun 29 17:58:29 2010 @@ -65,40 +65,14 @@ namespace commands{ virtual ~RemoveInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual RemoveInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getObjectId() const; @@ -115,15 +89,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.cpp Tue Jun 29 17:58:29 2010 @@ -188,8 +188,7 @@ void RemoveSubscriptionInfo::setClientId } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer RemoveSubscriptionInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer RemoveSubscriptionInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processRemoveSubscriptionInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/RemoveSubscriptionInfo.h Tue Jun 29 17:58:29 2010 @@ -66,40 +66,14 @@ namespace commands{ virtual ~RemoveSubscriptionInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual RemoveSubscriptionInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getConnectionId() const; @@ -121,15 +95,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.cpp Tue Jun 29 17:58:29 2010 @@ -148,8 +148,7 @@ void ReplayCommand::setLastNakNumber( in } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer ReplayCommand::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer ReplayCommand::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processReplayCommand( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ReplayCommand.h Tue Jun 29 17:58:29 2010 @@ -64,40 +64,14 @@ namespace commands{ virtual ~ReplayCommand(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual ReplayCommand* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int getFirstNakNumber() const; @@ -106,15 +80,7 @@ namespace commands{ virtual int getLastNakNumber() const; virtual void setLastNakNumber( int lastNakNumber ); - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.cpp Tue Jun 29 17:58:29 2010 @@ -132,8 +132,7 @@ void Response::setCorrelationId( int cor } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer Response::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer Response::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processResponse( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/Response.h Tue Jun 29 17:58:29 2010 @@ -63,40 +63,14 @@ namespace commands{ virtual ~Response(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual Response* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int getCorrelationId() const; @@ -109,15 +83,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionId.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionId.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionId.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionId.h Tue Jun 29 17:58:29 2010 @@ -78,40 +78,14 @@ namespace commands{ virtual ~SessionId(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual SessionId* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; const Pointer& getParentId() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.cpp Tue Jun 29 17:58:29 2010 @@ -147,8 +147,7 @@ void SessionInfo::setSessionId( const de } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer SessionInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer SessionInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processSessionInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SessionInfo.h Tue Jun 29 17:58:29 2010 @@ -70,40 +70,14 @@ namespace commands{ virtual ~SessionInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual SessionInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; unsigned int getAckMode() const { @@ -120,15 +94,7 @@ namespace commands{ virtual Pointer& getSessionId(); virtual void setSessionId( const Pointer& sessionId ); - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.cpp Tue Jun 29 17:58:29 2010 @@ -116,8 +116,7 @@ bool ShutdownInfo::equals( const DataStr } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer ShutdownInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer ShutdownInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processShutdownInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/ShutdownInfo.h Tue Jun 29 17:58:29 2010 @@ -62,40 +62,14 @@ namespace commands{ virtual ~ShutdownInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual ShutdownInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; /** @@ -105,15 +79,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SubscriptionInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SubscriptionInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SubscriptionInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/SubscriptionInfo.h Tue Jun 29 17:58:29 2010 @@ -68,40 +68,14 @@ namespace commands{ virtual ~SubscriptionInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual SubscriptionInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const std::string& getClientId() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionId.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionId.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionId.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionId.h Tue Jun 29 17:58:29 2010 @@ -62,40 +62,14 @@ namespace commands{ virtual ~TransactionId(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual TransactionId* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int compareTo( const TransactionId& value ) const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.cpp Tue Jun 29 17:58:29 2010 @@ -192,8 +192,7 @@ void TransactionInfo::setType( unsigned } //////////////////////////////////////////////////////////////////////////////// -decaf::lang::Pointer TransactionInfo::visit( activemq::state::CommandVisitor* visitor ) - throw( activemq::exceptions::ActiveMQException ) { +decaf::lang::Pointer TransactionInfo::visit( activemq::state::CommandVisitor* visitor ) { return visitor->processTransactionInfo( this ); } Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/TransactionInfo.h Tue Jun 29 17:58:29 2010 @@ -67,40 +67,14 @@ namespace commands{ virtual ~TransactionInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual TransactionInfo* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual const Pointer& getConnectionId() const; @@ -121,15 +95,7 @@ namespace commands{ return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ - virtual Pointer visit( activemq::state::CommandVisitor* visitor ) - throw( exceptions::ActiveMQException ); + virtual Pointer visit( activemq::state::CommandVisitor* visitor ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.cpp Tue Jun 29 17:58:29 2010 @@ -311,8 +311,7 @@ void WireFormatInfo::setSizePrefixDisabl } //////////////////////////////////////////////////////////////////////////////// -void WireFormatInfo::beforeMarshal( WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ) { +void WireFormatInfo::beforeMarshal( WireFormat* wireFormat AMQCPP_UNUSED ) { try{ @@ -328,8 +327,7 @@ void WireFormatInfo::beforeMarshal( Wire } //////////////////////////////////////////////////////////////////////////////// -void WireFormatInfo::afterUnmarshal( WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ) { +void WireFormatInfo::afterUnmarshal( WireFormat* wireFormat AMQCPP_UNUSED ) { try{ Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/WireFormatInfo.h Tue Jun 29 17:58:29 2010 @@ -55,57 +55,20 @@ namespace commands{ virtual ~WireFormatInfo(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual DataStructure* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this objects - * members, overwriting any existing data. - * @return src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ + virtual bool equals( const DataStructure* value ) const; - /** - * Indicates that this command is aware of Marshaling, and needs - * to have its Marshaling methods invoked. - * @returns boolean indicating desire to be in marshaling stages - */ virtual bool isMarshalAware() const { return true; } - /** - * Allows a Visitor to visit this command and return a response to the - * command based on the command type being visited. The command will call - * the proper processXXX method in the visitor. - * - * @return a Response to the visitor being called or NULL if no response. - */ virtual decaf::lang::Pointer visit( activemq::state::CommandVisitor* visitor ) throw( exceptions::ActiveMQException ); @@ -294,22 +257,9 @@ namespace commands{ public: - /** - * Handles the marshaling of the objects properties into the - * internal byte array before the object is marshalled to the - * wire - * @param wireFormat - the wire formatting controller - */ - virtual void beforeMarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ); + virtual void beforeMarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ); - /** - * Called after unmarshaling is started to cleanup the object being - * unmarshaled. - * @param wireFormat - the wireformat object to control unmarshaling - */ - virtual void afterUnmarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ) - throw ( decaf::io::IOException ); + virtual void afterUnmarshal( wireformat::WireFormat* wireFormat AMQCPP_UNUSED ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/XATransactionId.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/XATransactionId.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/XATransactionId.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/commands/XATransactionId.h Tue Jun 29 17:58:29 2010 @@ -65,40 +65,14 @@ namespace commands{ virtual ~XATransactionId(); - /** - * Get the unique identifier that this object and its own - * Marshaler share. - * @returns new DataStructure type copy. - */ virtual unsigned char getDataStructureType() const; - /** - * Clone this object and return a new instance that the - * caller now owns, this will be an exact copy of this one - * @returns new copy of this object. - */ virtual XATransactionId* cloneDataStructure() const; - /** - * Copy the contents of the passed object into this object's - * members, overwriting any existing data. - * @param src - Source Object - */ virtual void copyDataStructure( const DataStructure* src ); - /** - * Returns a string containing the information for this DataStructure - * such as its type and value of its elements. - * @return formatted string useful for debugging. - */ virtual std::string toString() const; - /** - * Compares the DataStructure passed in to this one, and returns if - * they are equivalent. Equivalent here means that they are of the - * same type, and that each element of the objects are the same. - * @returns true if DataStructure's are Equal. - */ virtual bool equals( const DataStructure* value ) const; virtual int getFormatId() const; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.cpp Tue Jun 29 17:58:29 2010 @@ -51,7 +51,7 @@ unsigned char ActiveMQBlobMessageMarshal } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBlobMessageMarshaller::tightUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn, BooleanStream* bs ) throw( decaf::io::IOException ) { +void ActiveMQBlobMessageMarshaller::tightUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn, BooleanStream* bs ) { try { @@ -78,7 +78,7 @@ void ActiveMQBlobMessageMarshaller::tigh } /////////////////////////////////////////////////////////////////////////////// -int ActiveMQBlobMessageMarshaller::tightMarshal1( OpenWireFormat* wireFormat, DataStructure* dataStructure, BooleanStream* bs ) throw( decaf::io::IOException ) { +int ActiveMQBlobMessageMarshaller::tightMarshal1( OpenWireFormat* wireFormat, DataStructure* dataStructure, BooleanStream* bs ) { try { @@ -107,7 +107,7 @@ int ActiveMQBlobMessageMarshaller::tight } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBlobMessageMarshaller::tightMarshal2( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut, BooleanStream* bs ) throw( decaf::io::IOException ) { +void ActiveMQBlobMessageMarshaller::tightMarshal2( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut, BooleanStream* bs ) { try { @@ -134,7 +134,7 @@ void ActiveMQBlobMessageMarshaller::tigh } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBlobMessageMarshaller::looseUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn ) throw( decaf::io::IOException ) { +void ActiveMQBlobMessageMarshaller::looseUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn ) { try { @@ -160,7 +160,7 @@ void ActiveMQBlobMessageMarshaller::loos } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBlobMessageMarshaller::looseMarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut ) throw( decaf::io::IOException ) { +void ActiveMQBlobMessageMarshaller::looseMarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut ) { try { Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.h?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.h (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBlobMessageMarshaller.h Tue Jun 29 17:58:29 2010 @@ -52,89 +52,31 @@ namespace generated{ ActiveMQBlobMessageMarshaller() {} virtual ~ActiveMQBlobMessageMarshaller() {} - /** - * Creates a new instance of this marshalable type. - * - * @return new DataStructure object pointer caller owns it. - */ virtual commands::DataStructure* createObject() const; - /** - * Get the Data Structure Type that identifies this Marshaler - * - * @return byte holding the data structure type value - */ virtual unsigned char getDataStructureType() const; - /** - * Un-marshal an object instance from the data input stream. - * - * @param wireFormat - describes the wire format of the broker. - * @param dataStructure - Object to be un-marshaled. - * @param dataIn - BinaryReader that provides that data. - * @param bs - BooleanStream stream used to unpack bits from the wire. - * - * @throws IOException if an error occurs during the unmarshal. - */ virtual void tightUnmarshal( OpenWireFormat* wireFormat, commands::DataStructure* dataStructure, decaf::io::DataInputStream* dataIn, - utils::BooleanStream* bs ) throw( decaf::io::IOException ); + utils::BooleanStream* bs ); - /** - * Write the booleans that this object uses to a BooleanStream - * - * @param wireFormat - describes the wire format of the broker - * @param dataStructure - Object to be marshaled - * @param bs - BooleanStream stream used to pack bits from the wire. - * @returns int value indicating the size of the marshaled object. - * - * @throws IOException if an error occurs during the marshal. - */ virtual int tightMarshal1( OpenWireFormat* wireFormat, commands::DataStructure* dataStructure, - utils::BooleanStream* bs ) throw( decaf::io::IOException ); + utils::BooleanStream* bs ); - /** - * Write a object instance to data output stream - * - * @param wireFormat - describes the wire format of the broker - * @param dataStructure - Object to be marshaled - * @param dataOut - BinaryReader that provides that data sink - * @param bs - BooleanStream stream used to pack bits from the wire. - * - * @throws IOException if an error occurs during the marshal. - */ virtual void tightMarshal2( OpenWireFormat* wireFormat, commands::DataStructure* dataStructure, decaf::io::DataOutputStream* dataOut, - utils::BooleanStream* bs ) throw( decaf::io::IOException ); + utils::BooleanStream* bs ); - /** - * Un-marshal an object instance from the data input stream - * - * @param wireFormat - describes the wire format of the broker - * @param dataStructure - Object to be marshaled - * @param dataIn - BinaryReader that provides that data source - * - * @throws IOException if an error occurs during the unmarshal. - */ virtual void looseUnmarshal( OpenWireFormat* wireFormat, commands::DataStructure* dataStructure, - decaf::io::DataInputStream* dataIn ) throw( decaf::io::IOException ); + decaf::io::DataInputStream* dataIn ); - /** - * Write a object instance to data output stream - * - * @param wireFormat - describs the wire format of the broker - * @param dataStructure - Object to be marshaled - * @param dataOut - BinaryWriter that provides that data sink - * - * @throws IOException if an error occurs during the marshal. - */ virtual void looseMarshal( OpenWireFormat* wireFormat, commands::DataStructure* dataStructure, - decaf::io::DataOutputStream* dataOut ) throw( decaf::io::IOException ); + decaf::io::DataOutputStream* dataOut ); }; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBytesMessageMarshaller.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBytesMessageMarshaller.cpp?rev=959054&r1=959053&r2=959054&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBytesMessageMarshaller.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/wireformat/openwire/marshal/generated/ActiveMQBytesMessageMarshaller.cpp Tue Jun 29 17:58:29 2010 @@ -51,7 +51,7 @@ unsigned char ActiveMQBytesMessageMarsha } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBytesMessageMarshaller::tightUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn, BooleanStream* bs ) throw( decaf::io::IOException ) { +void ActiveMQBytesMessageMarshaller::tightUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn, BooleanStream* bs ) { try { @@ -70,7 +70,7 @@ void ActiveMQBytesMessageMarshaller::tig } /////////////////////////////////////////////////////////////////////////////// -int ActiveMQBytesMessageMarshaller::tightMarshal1( OpenWireFormat* wireFormat, DataStructure* dataStructure, BooleanStream* bs ) throw( decaf::io::IOException ) { +int ActiveMQBytesMessageMarshaller::tightMarshal1( OpenWireFormat* wireFormat, DataStructure* dataStructure, BooleanStream* bs ) { try { @@ -88,7 +88,7 @@ int ActiveMQBytesMessageMarshaller::tigh } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBytesMessageMarshaller::tightMarshal2( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut, BooleanStream* bs ) throw( decaf::io::IOException ) { +void ActiveMQBytesMessageMarshaller::tightMarshal2( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut, BooleanStream* bs ) { try { @@ -104,7 +104,7 @@ void ActiveMQBytesMessageMarshaller::tig } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBytesMessageMarshaller::looseUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn ) throw( decaf::io::IOException ) { +void ActiveMQBytesMessageMarshaller::looseUnmarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataInputStream* dataIn ) { try { @@ -120,7 +120,7 @@ void ActiveMQBytesMessageMarshaller::loo } /////////////////////////////////////////////////////////////////////////////// -void ActiveMQBytesMessageMarshaller::looseMarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut ) throw( decaf::io::IOException ) { +void ActiveMQBytesMessageMarshaller::looseMarshal( OpenWireFormat* wireFormat, DataStructure* dataStructure, DataOutputStream* dataOut ) { try {