Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java')
-rw-r--r--plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java b/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java
index 183c2e0801..06cf850121 100644
--- a/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java
+++ b/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/ConnectionMetaData.java
@@ -39,7 +39,7 @@ public interface ConnectionMetaData
/** Gets the JMS API version.
*
* @return the JMS API version
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -47,9 +47,9 @@ public interface ConnectionMetaData
String getJMSVersion() throws JMSException;
/** Gets the JMS major version number.
- *
+ *
* @return the JMS API major version number
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -57,9 +57,9 @@ public interface ConnectionMetaData
int getJMSMajorVersion() throws JMSException;
/** Gets the JMS minor version number.
- *
+ *
* @return the JMS API minor version number
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -69,7 +69,7 @@ public interface ConnectionMetaData
/** Gets the JMS provider name.
*
* @return the JMS provider name
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -79,7 +79,7 @@ public interface ConnectionMetaData
/** Gets the JMS provider version.
*
* @return the JMS provider version
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -87,9 +87,9 @@ public interface ConnectionMetaData
String getProviderVersion() throws JMSException;
/** Gets the JMS provider major version number.
- *
+ *
* @return the JMS provider major version number
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -97,9 +97,9 @@ public interface ConnectionMetaData
int getProviderMajorVersion() throws JMSException;
/** Gets the JMS provider minor version number.
- *
+ *
* @return the JMS provider minor version number
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/
@@ -107,9 +107,9 @@ public interface ConnectionMetaData
int getProviderMinorVersion() throws JMSException;
/** Gets an enumeration of the JMSX property names.
- *
+ *
* @return an Enumeration of JMSX property names
- *
+ *
* @exception JMSException if the JMS provider fails to retrieve the
* metadata due to some internal error.
*/

Back to the top