*** empty log message ***
diff --git a/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/Trace.java b/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/Trace.java
index f4b97fe..dc9bf41 100644
--- a/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/Trace.java
+++ b/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/Trace.java
@@ -18,28 +18,30 @@
public static byte SEVERE = 2;
public static byte FINEST = 3;
public static byte FINER = 4;
-
+
/**
* Trace constructor comment.
*/
private Trace() {
super();
}
-
+
/**
* Trace the given text.
*
- * @param s java.lang.String
+ * @param level the trace level
+ * @param s a message
*/
public static void trace(byte level, String s) {
Trace.trace(level, s, null);
}
-
+
/**
* Trace the given message and exception.
*
- * @param s java.lang.String
- * @param t java.lang.Throwable
+ * @param level the trace level
+ * @param s a message
+ * @param t a throwable
*/
public static void trace(byte level, String s, Throwable t) {
if (!TomcatPlugin.getInstance().isDebugging())
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Trace.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Trace.java
index 6244aab..eb1ab59 100644
--- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Trace.java
+++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Trace.java
@@ -18,28 +18,30 @@
public static byte SEVERE = 2;
public static byte FINEST = 3;
public static byte FINER = 4;
-
+
/**
* Trace constructor comment.
*/
private Trace() {
super();
}
-
+
/**
* Trace the given text.
*
- * @param s java.lang.String
+ * @param level the trace level
+ * @param s a message
*/
public static void trace(byte level, String s) {
Trace.trace(level, s, null);
}
-
+
/**
* Trace the given message and exception.
*
- * @param s java.lang.String
- * @param t java.lang.Throwable
+ * @param level the trace level
+ * @param s a message
+ * @param t a throwable
*/
public static void trace(byte level, String s, Throwable t) {
if (!TomcatUIPlugin.getInstance().isDebugging())
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/ConfigurationWebModuleEditorPart.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/ConfigurationWebModuleEditorPart.java
index fe40aaa..300b785 100644
--- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/ConfigurationWebModuleEditorPart.java
+++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/ConfigurationWebModuleEditorPart.java
@@ -100,7 +100,7 @@
}
/**
- * Creates the SWT controls for this workbench part.
+ * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
*/
public void createPartControl(Composite parent) {
FormToolkit toolkit = getFormToolkit(parent.getDisplay());
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/MimeMappingDialog.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/MimeMappingDialog.java
index 561ad65..06c313a 100644
--- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/MimeMappingDialog.java
+++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/MimeMappingDialog.java
@@ -44,8 +44,10 @@
}
/**
- * SystemPropertyDialog constructor comment.
- * @param parentShell org.eclipse.swt.widgets.Shell
+ * MimeMappingDialog constructor.
+ *
+ * @param parentShell a shell
+ * @param map a mime mapping
*/
public MimeMappingDialog(Shell parentShell, MimeMapping map) {
super(parentShell);
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/WebModuleDialog.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/WebModuleDialog.java
index 77d2606..ba96e41 100644
--- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/WebModuleDialog.java
+++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/editor/WebModuleDialog.java
@@ -59,7 +59,12 @@
/**
* WebModuleDialog constructor comment.
- * @param parentShell org.eclipse.swt.widgets.Shell
+ *
+ * @param parentShell a shell
+ * @param server2 a server
+ * @param server a Tomcat server
+ * @param config a Tomcat server configuration
+ * @param module a module
*/
public WebModuleDialog(Shell parentShell, IServerAttributes server2, ITomcatServer server, ITomcatConfiguration config, WebModule module) {
super(parentShell);
@@ -72,7 +77,12 @@
/**
* WebModuleDialog constructor comment.
- * @param parentShell org.eclipse.swt.widgets.Shell
+ *
+ * @param parentShell a shell
+ * @param server2 a server
+ * @param server a Tomcat server
+ * @param config a Tomcat server configuration
+ * @param isProject true if it is a project
*/
public WebModuleDialog(Shell parentShell, IServerAttributes server2, ITomcatServer server, ITomcatConfiguration config, boolean isProject) {
this(parentShell, server2, server, config, new WebModule("/", "", null, true));
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorDialog.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorDialog.java
index a743ae2..e756c2b 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorDialog.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorDialog.java
@@ -55,7 +55,10 @@
}
/**
+ * Create a new monitor dialog.
+ *
* @param parentShell
+ * @param monitor
*/
public MonitorDialog(Shell parentShell, IMonitorWorkingCopy monitor) {
super(parentShell);
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorPreferencePage.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorPreferencePage.java
index 81c2d1f..49087b6 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorPreferencePage.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorPreferencePage.java
@@ -288,8 +288,7 @@
}
/**
- * Method declared on IPreferencePage.
- * Subclasses should override
+ * @see org.eclipse.jface.preference.IPreferencePage#performOk()
*/
public boolean performOk() {
MonitorUIPlugin.setShowOnActivityPreference(displayButton.getSelection());
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorTableLabelProvider.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorTableLabelProvider.java
index 9d644cc..35aefba 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorTableLabelProvider.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorTableLabelProvider.java
@@ -27,39 +27,21 @@
}
/**
- * Adds a listener to this label provider.
- * Has no effect if an identical listener is already registered.
- * <p>
- * Label provider listeners are informed about state changes
- * that affect the rendering of the viewer that uses this label provider.
- * </p>
- *
- * @param listener a label provider listener
+ * @see org.eclipse.jface.viewers.IBaseLabelProvider#addListener(org.eclipse.jface.viewers.ILabelProviderListener)
*/
public void addListener(ILabelProviderListener listener) {
// do nothing
}
/**
- * Disposes of this label provider. When a label provider is
- * attached to a viewer, the viewer will automatically call
- * this method when the viewer is being closed. When label providers
- * are used outside of the context of a viewer, it is the client's
- * responsibility to ensure that this method is called when the
- * provider is no longer needed.
+ * @see org.eclipse.jface.viewers.IBaseLabelProvider#dispose()
*/
public void dispose() {
// do nothing
}
/**
- * Returns the label image for the given column of the given element.
- *
- * @param element the object representing the entire row, or
- * <code>null</code> indicating that no input object is set
- * in the viewer
- * @param columnIndex the zero-based index of the column in which
- * the label appears
+ * @see ITableLabelProvider#getColumnImage(Object, int)
*/
public Image getColumnImage(Object element, int columnIndex) {
if (columnIndex == 0) {
@@ -72,12 +54,7 @@
}
/**
- * Returns the label text for the given column of the given element.
- *
- * @param element the object representing the entire row, or
- * <code>null</code> indicating that no input object is set
- * in the viewer
- * @param columnIndex the zero-based index of the column in which the label appears
+ * @see ITableLabelProvider#getColumnText(Object, int)
*/
public String getColumnText(Object element, int columnIndex) {
IMonitor monitor = (IMonitor) element;
@@ -103,26 +80,14 @@
}
/**
- * Returns whether the label would be affected
- * by a change to the given property of the given element.
- * This can be used to optimize a non-structural viewer update.
- * If the property mentioned in the update does not affect the label,
- * then the viewer need not update the label.
- *
- * @param element the element
- * @param property the property
- * @return <code>true</code> if the label would be affected,
- * and <code>false</code> if it would be unaffected
+ * @see org.eclipse.jface.viewers.IBaseLabelProvider#isLabelProperty(Object, String)
*/
public boolean isLabelProperty(Object element, String property) {
return false;
}
/**
- * Removes a listener to this label provider.
- * Has no affect if an identical listener is not registered.
- *
- * @param listener a label provider listener
+ * @see org.eclipse.jface.viewers.IBaseLabelProvider#removeListener(org.eclipse.jface.viewers.ILabelProviderListener)
*/
public void removeListener(ILabelProviderListener listener) {
// do nothing
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorUIPlugin.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorUIPlugin.java
index 00600b8..171b139 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorUIPlugin.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/MonitorUIPlugin.java
@@ -239,7 +239,7 @@
}
/**
- * Start this plug-in.
+ * @see AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
@@ -257,6 +257,9 @@
}
}
+ /**
+ * @see AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
+ */
public void stop(BundleContext context) throws Exception {
super.stop(context);
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/Trace.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/Trace.java
index df3d955..539ce8b 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/Trace.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/Trace.java
@@ -28,7 +28,8 @@
/**
* Trace the given text.
*
- * @param s java.lang.String
+ * @param level the trace level
+ * @param s a message
*/
public static void trace(byte level, String s) {
trace(level, s, null);
@@ -37,8 +38,9 @@
/**
* Trace the given message and exception.
*
- * @param s java.lang.String
- * @param t java.lang.Throwable
+ * @param level the trace level
+ * @param s a message
+ * @param t a throwable
*/
public static void trace(byte level, String s, Throwable t) {
if (!MonitorUIPlugin.getInstance().isDebugging())
diff --git a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/view/MonitorView.java b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/view/MonitorView.java
index a4313f7..08cad69 100644
--- a/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/view/MonitorView.java
+++ b/plugins/org.eclipse.wst.internet.monitor.ui/monitorui/org/eclipse/wst/internet/monitor/ui/internal/view/MonitorView.java
@@ -116,7 +116,7 @@
}
/**
- * Returns the inner component in a desktop part.
+ * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
*/
public void createPartControl(Composite parent) {
SashForm sashFparent = new SashForm(parent, SWT.VERTICAL);
@@ -463,7 +463,9 @@
}
/**
+ * Open a request.
*
+ * @param request the request
*/
public static void open(final Request request) {
Display.getDefault().asyncExec(new Runnable() {