Source Code Cross Referenced for TextMessage.java in  » Testing » Ejb3Unit » javax » jms » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » Ejb3Unit » javax.jms 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * The contents of this file are subject to the terms 
03:         * of the Common Development and Distribution License 
04:         * (the License).  You may not use this file except in
05:         * compliance with the License.
06:         * 
07:         * You can obtain a copy of the license at 
08:         * https://glassfish.dev.java.net/public/CDDLv1.0.html or
09:         * glassfish/bootstrap/legal/CDDLv1.0.txt.
10:         * See the License for the specific language governing 
11:         * permissions and limitations under the License.
12:         * 
13:         * When distributing Covered Code, include this CDDL 
14:         * Header Notice in each file and include the License file 
15:         * at glassfish/bootstrap/legal/CDDLv1.0.txt.  
16:         * If applicable, add the following below the CDDL Header, 
17:         * with the fields enclosed by brackets [] replaced by
18:         * you own identifying information: 
19:         * "Portions Copyrighted [year] [name of copyright owner]"
20:         * 
21:         * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22:         */
23:
24:        package javax.jms;
25:
26:        /**
27:         * A <CODE>TextMessage</CODE> object is used to send a message containing a
28:         * <CODE>java.lang.String</CODE>. It inherits from the <CODE>Message</CODE>
29:         * interface and adds a text message body.
30:         * 
31:         * <P>
32:         * This message type can be used to transport text-based messages, including
33:         * those with XML content.
34:         * 
35:         * <P>
36:         * When a client receives a <CODE>TextMessage</CODE>, it is in read-only
37:         * mode. If a client attempts to write to the message at this point, a <CODE>MessageNotWriteableException</CODE>
38:         * is thrown. If <CODE>clearBody</CODE> is called, the message can now be both
39:         * read from and written to.
40:         * 
41:         * @version 1.1 - February 2, 2002
42:         * @author Mark Hapner
43:         * @author Rich Burridge
44:         * @author Kate Stout
45:         * 
46:         * @see javax.jms.Session#createTextMessage()
47:         * @see javax.jms.Session#createTextMessage(String)
48:         * @see javax.jms.BytesMessage
49:         * @see javax.jms.MapMessage
50:         * @see javax.jms.Message
51:         * @see javax.jms.ObjectMessage
52:         * @see javax.jms.StreamMessage
53:         * @see java.lang.String
54:         */
55:
56:        public interface TextMessage extends Message {
57:
58:            /**
59:             * Sets the string containing this message's data.
60:             * 
61:             * @param string
62:             *            the <CODE>String</CODE> containing the message's data
63:             * 
64:             * @exception JMSException
65:             *                if the JMS provider fails to set the text due to some
66:             *                internal error.
67:             * @exception MessageNotWriteableException
68:             *                if the message is in read-only mode.
69:             */
70:
71:            void setText(String string) throws JMSException;
72:
73:            /**
74:             * Gets the string containing this message's data. The default value is
75:             * null.
76:             * 
77:             * @return the <CODE>String</CODE> containing the message's data
78:             * 
79:             * @exception JMSException
80:             *                if the JMS provider fails to get the text due to some
81:             *                internal error.
82:             */
83:
84:            String getText() throws JMSException;
85:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.