forked from hornetq/hornetq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request hornetq#1545 from scop/javadoc8
Javadoc 1.8 error fixes
- Loading branch information
Showing
76 changed files
with
216 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
/** | ||
* A simple String class that can store all characters, and stores as simple {@code byte[]}, this | ||
* minimises expensive copying between String objects. | ||
* <p/> | ||
* <p> | ||
* This object is used heavily throughout HornetQ for performance reasons. | ||
* | ||
* @author <a href="mailto:[email protected]">Tim Fox</a> | ||
|
@@ -45,7 +45,7 @@ public final class SimpleString implements CharSequence, Serializable, Comparabl | |
|
||
/** | ||
* Returns a SimpleString constructed from the {@code string} parameter. | ||
* <p/> | ||
* <p> | ||
* If {@code string} is {@code null}, the return value will be {@code null} too. | ||
* | ||
* @param string String used to instantiate a SimpleString. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
/** | ||
* This class will be used to perform generic class-loader operations, | ||
* such as load a class first using TCCL, and then the classLoader used by HornetQ (ClassloadingUtil.getClass().getClassLoader()). | ||
* <p/> | ||
* <p> | ||
* Is't required to use a Security Block on any calls to this class. | ||
* | ||
* @author <a href="mailto:[email protected]">Howard Gao</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
/** | ||
* A PasswordMarkingUtil | ||
* | ||
* @author <mailto:[email protected]">Howard Gao</a> | ||
* @author <a href="mailto:[email protected]">Howard Gao</a> | ||
* | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,10 +36,10 @@ | |
|
||
/** | ||
* Property Value Conversion. | ||
* <p/> | ||
* This implementation follows section 3.5.4 of the <i>Java Message Service<i> specification | ||
* <p> | ||
* This implementation follows section 3.5.4 of the <i>Java Message Service</i> specification | ||
* (Version 1.1 April 12, 2002). | ||
* <p/> | ||
* <p> | ||
* TODO - should have typed property getters and do conversions herein | ||
* | ||
* @author <a href="mailto:[email protected]">Tim Fox</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ | |
/** | ||
* This file represents how we are using Discovery. | ||
* <p> | ||
* The discovery configuration could either use plain UDP, or JGroups.<br/> | ||
* The discovery configuration could either use plain UDP, or JGroups.<br> | ||
* If using UDP, all the UDP properties will be filled and the jgroups properties will be | ||
* {@code null}.<br/> | ||
* {@code null}.<br> | ||
* If using JGroups, all the UDP properties will be -1 or {@code null} and the jgroups properties | ||
* will be filled.<br/> | ||
* will be filled.<br> | ||
* If by any reason, both properties are filled, the JGroups takes precedence. That means, if | ||
* {@code jgroupsFile != null} then the Grouping method used will be JGroups. | ||
* @author <a href="mailto:[email protected]">Tim Fox</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,8 @@ | |
* UDP attributes in order to form a version 2.2 DiscoveryGroupConfiguration | ||
* in time of serialization. | ||
* | ||
* @see org.hornetq.api.core.DiscoveryGroupConfiguration.readObject(ObjectInputStream) | ||
* @see org.hornetq.api.core.DiscoveryGroupConfiguration.writeObject(ObjectOutputStream) | ||
* @see DiscoveryGroupConfiguration#readObject(java.io.ObjectInputStream) | ||
* @see DiscoveryGroupConfiguration#writeObject(java.io.ObjectOutputStream) | ||
* | ||
* @author <a href="mailto:[email protected]">Andy Taylor</a> | ||
* 12/13/12 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,9 @@ | |
|
||
/** | ||
* This is class is a simple way to intercepting calls on HornetQ client and servers. | ||
* <p/> | ||
* <p> | ||
* To add an interceptor to HornetQ server, you have to modify the server configuration file | ||
* {@literal hornetq-configuration.xml}. <br/> | ||
* {@literal hornetq-configuration.xml}.<br> | ||
* To add it to a client, use {@link ServerLocator#addIncomingInterceptor(Interceptor)} | ||
* | ||
* @author [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
|
||
/** | ||
* The configuration used to determine how the server will broadcast members. | ||
* <p/> | ||
* <p> | ||
* This is analogous to {@link org.hornetq.api.core.DiscoveryGroupConfiguration} | ||
* | ||
* @author <a href="mailto:[email protected]">Tim Fox</a> Created 18 Nov 2008 08:44:30 | ||
|
Oops, something went wrong.