Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordeboer2009-01-06 15:40:40 +0000
committerdeboer2009-01-06 15:40:40 +0000
commit524b9bd6f2daec854a34e8c26adb59c4158ec54f (patch)
treedd325a039945a1df923bdfef5bcefcedaea1cb44 /plugins/org.eclipse.wst.server.ui/serverui/org
parentbed8a6d38874d4ea093578d2cab7bab611395ba0 (diff)
downloadwebtools.servertools-524b9bd6f2daec854a34e8c26adb59c4158ec54f.tar.gz
webtools.servertools-524b9bd6f2daec854a34e8c26adb59c4158ec54f.tar.xz
webtools.servertools-524b9bd6f2daec854a34e8c26adb59c4158ec54f.zip
[260054] Support for API tools
Diffstat (limited to 'plugins/org.eclipse.wst.server.ui/serverui/org')
-rw-r--r--plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/IServerModule.java2
-rw-r--r--plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorPart.java4
-rw-r--r--plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorSection.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/IServerModule.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/IServerModule.java
index 79c921785..5f04206d4 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/IServerModule.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/IServerModule.java
@@ -16,7 +16,7 @@ import org.eclipse.wst.server.core.IServer;
* A helper interface for modules that are deployed to a server, commonly
* used to help actions interact with modules in the Servers view.
*
- * @since 3.0
+ * @since 1.1
*/
public interface IServerModule {
/**
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorPart.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorPart.java
index 6aad065c2..bb8fa6185 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorPart.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorPart.java
@@ -96,7 +96,7 @@ public abstract class ServerEditorPart extends EditorPart {
* Set the managed form that this part is using.
*
* @param managedForm a managed form
- * @since 3.0
+ * @since 1.1
*/
protected void setManagedForm(IManagedForm managedForm) {
this.managedForm = managedForm;
@@ -108,7 +108,7 @@ public abstract class ServerEditorPart extends EditorPart {
*
* @return managedForm the managed form that this part is using, or <code>null</code>
* if no managed form has been set
- * @since 3.0
+ * @since 1.1
*/
protected IManagedForm getManagedForm() {
return managedForm;
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorSection.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorSection.java
index bd5dae545..88824d83e 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorSection.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/editor/ServerEditorSection.java
@@ -161,7 +161,7 @@ public abstract class ServerEditorSection {
*
* @return the managed form that the editor is using, or <code>null</code> if no
* managed form has been set
- * @since 3.0
+ * @since 1.1
*/
protected IManagedForm getManagedForm() {
return editor.getManagedForm();

Back to the top