summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authoreea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-09 19:03:52 +0000
committereea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-09 19:03:52 +0000
commitd56ef2244a60f643fc2fa788e735953940c985ed (patch)
tree658f4a95f515a5673fced23013b627624ca12666 /java
parentfbbffdd063a149ad69d1934c7348fae03bf53816 (diff)
downloadATCD-d56ef2244a60f643fc2fa788e735953940c985ed.tar.gz
Changed a few javadoc comments to avoid warnings.
Diffstat (limited to 'java')
-rw-r--r--java/src/Acceptor.java6
-rw-r--r--java/src/EventHandler.java2
-rw-r--r--java/src/TimeValue.java4
3 files changed, 6 insertions, 6 deletions
diff --git a/java/src/Acceptor.java b/java/src/Acceptor.java
index 562b5a85d07..945f170fe38 100644
--- a/java/src/Acceptor.java
+++ b/java/src/Acceptor.java
@@ -69,7 +69,7 @@ public class Acceptor extends ServiceObject
* an instance is created via this method, <tt>setHandlerFactory</tt>
* must be called prior to using <tt>accept</tt>.
*
- * @see JACE.Connection.Acceptor.setHandlerFactory
+ * @see JACE.Connection.Acceptor#setHandlerFactory
*/
public Acceptor ()
{
@@ -81,7 +81,7 @@ public class Acceptor extends ServiceObject
* an instance of a SvcHandler when a connection is accepted
* (typically obtained by calling <tt>Class.classForName</tt>).
*
- *@see java.lang.Class.forName
+ *@see java.lang.Class#forName
*/
public Acceptor (Class handlerFactory)
{
@@ -95,7 +95,7 @@ public class Acceptor extends ServiceObject
* an instance of a SvcHandler when a connection is accepted
* (typically obtained by calling <tt>Class.forName</tt>).
*
- *@see java.lang.Class.forName
+ *@see java.lang.Class#forName
*/
public void setHandlerFactory (Class handlerFactory)
{
diff --git a/java/src/EventHandler.java b/java/src/EventHandler.java
index f02c53684fd..30f5bb1dba4 100644
--- a/java/src/EventHandler.java
+++ b/java/src/EventHandler.java
@@ -37,7 +37,7 @@ import JACE.ASX.TimeValue;
*</blockquote>
*
*@see TimerQueue
- *@see Reactor
+ *@see JACE.Reactor
*/
public interface EventHandler
{
diff --git a/java/src/TimeValue.java b/java/src/TimeValue.java
index 97334452a06..274fdd8cc3d 100644
--- a/java/src/TimeValue.java
+++ b/java/src/TimeValue.java
@@ -107,7 +107,7 @@ public class TimeValue
* of day offset by the given number of seconds and nanoseconds.
*@param sec Number of seconds to offset by
*@param nanos Number of nanoseconds to offset by
- *@see JACE.ASX.TimeValue;
+ *@see JACE.ASX.TimeValue
*@return TimeValue for the system time plus the given offset
*/
public static TimeValue relativeTimeOfDay(long sec, int nanos)
@@ -120,7 +120,7 @@ public class TimeValue
* Return a new TimeValue that represents the current system time
* of day offset by the given TimeValue.
*@param tv TimeValue to offset by
- *@see JACE.ASX.TimeValue;
+ *@see JACE.ASX.TimeValue
*@return TimeValue for the system time plus the given offset
*/
public static TimeValue relativeTimeOfDay(TimeValue offset)