From e1dc9724a371f065941b0f6dc447bed9f4b35e13 Mon Sep 17 00:00:00 2001 From: Anna Dushistova Date: Mon, 3 Aug 2009 18:17:56 +0000 Subject: [PATCH] [240530] removed EXPERIMENTAL tag from javadocs. --- .../terminals/core/ITerminalServiceSubSystem.java | 13 ++++--------- .../ITerminalServiceSubSystemConfiguration.java | 11 +++-------- .../terminals/core/TerminalServiceSubSystem.java | 8 ++------ .../TerminalServiceSubSystemConfiguration.java | 9 ++------- .../terminals/core/elements/TerminalElement.java | 15 +++++---------- .../ssh/SshTerminalSubSystemConfiguration.java | 11 +++-------- 6 files changed, 19 insertions(+), 48 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystem.java index fc8238ab85e..481b6098101 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystem.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystem.java @@ -1,13 +1,14 @@ /******************************************************************************** - * Copyright (c) 2008 MontaVista Software, Inc. + * Copyright (c) 2008, 2009 MontaVista Software, Inc. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Yu-Fen Kuo (MontaVista) - initial API and implementation - * Yu-Fen Kuo (MontaVista) - [227572] RSE Terminal doesn't reset the "connected" state when the shell exits + * Yu-Fen Kuo (MontaVista) - initial API and implementation + * Yu-Fen Kuo (MontaVista) - [227572] RSE Terminal doesn't reset the "connected" state when the shell exits * Anna Dushistova (MontaVista) - [257638] [rseterminal] Terminal subsystem doesn't have service properties + * Anna Dushistova (MontaVista) - [240530][rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv ********************************************************************************/ package org.eclipse.rse.subsystems.terminals.core; @@ -17,12 +18,6 @@ import org.eclipse.rse.subsystems.terminals.core.elements.TerminalElement; /** * Specialized interface for remote terminal subsystems. * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

*/ public interface ITerminalServiceSubSystem extends ISubSystem { public void addChild(TerminalElement element); diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystemConfiguration.java index 9f029a7a7a7..4e413e4e982 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystemConfiguration.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/ITerminalServiceSubSystemConfiguration.java @@ -1,11 +1,12 @@ /******************************************************************************** - * Copyright (c) 2008 MontaVista Software, Inc. + * Copyright (c) 2008, 2009 MontaVista Software, Inc. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Yu-Fen Kuo (MontaVista) - initial API and implementation + * Yu-Fen Kuo (MontaVista) - initial API and implementation + * Anna Dushistova (MontaVista) - [240530][rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv ********************************************************************************/ package org.eclipse.rse.subsystems.terminals.core; @@ -18,12 +19,6 @@ import org.eclipse.rse.services.terminals.ITerminalService; * An interface representing factories for creating TerminalServiceSubSystem * objects. * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

*/ public interface ITerminalServiceSubSystemConfiguration extends ISubSystemConfiguration { diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystem.java index f791a1f00ae..a5a0002d4f4 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystem.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystem.java @@ -13,6 +13,7 @@ * Anna Dushistova (MontaVista) - [227569] [rseterminal][api] Provide a "generic" Terminal subsystem * Anna Dushistova (MontaVista) - [257638] [rseterminal] Terminal subsystem doesn't have service properties * David McKnight (IBM) - [272882] [api] Handle exceptions in IService.initService() + * Anna Dushistova (MontaVista) - [240530][rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv ********************************************************************************/ package org.eclipse.rse.subsystems.terminals.core; @@ -39,13 +40,8 @@ import org.eclipse.swt.widgets.Display; /** * A Subsystem that has terminal instances as children. * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

*/ + public class TerminalServiceSubSystem extends SubSystem implements ITerminalServiceSubSystem, ICommunicationsListener { diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystemConfiguration.java index 655d0c0f5ee..0465c5509fc 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystemConfiguration.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/TerminalServiceSubSystemConfiguration.java @@ -7,6 +7,7 @@ * Contributors: * Yu-Fen Kuo (MontaVista) - initial API and implementation * Anna Dushistova (MontaVista) - [227569] [rseterminal][api] Provide a "generic" Terminal subsystem + * Anna Dushistova (MontaVista) - [240530] [rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv ********************************************************************************/ package org.eclipse.rse.subsystems.terminals.core; @@ -23,13 +24,7 @@ import org.eclipse.rse.services.terminals.ITerminalService; * The implementation of the ITerminalServiceSubSystemConfiguration interface * contains information about what features the subsystem supports, and creates * TerminalServiceSubSystem instances. - * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

+ * */ public abstract class TerminalServiceSubSystemConfiguration extends SubSystemConfiguration implements diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/elements/TerminalElement.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/elements/TerminalElement.java index 61ffb125be3..983053f49e6 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/elements/TerminalElement.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.core/src/org/eclipse/rse/subsystems/terminals/core/elements/TerminalElement.java @@ -1,15 +1,16 @@ /******************************************************************************** - * Copyright (c) 2008 MontaVista Software, Inc. and others. + * Copyright (c) 2008, 2009 MontaVista Software, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Yu-Fen Kuo (MontaVista) - initial API and implementation - * Anna Dushistova (MontaVista) - initial API and implementation - * Yu-Fen Kuo (MontaVista) - [227572] RSE Terminal doesn't reset the "connected" state when the shell exits + * Yu-Fen Kuo (MontaVista) - initial API and implementation + * Anna Dushistova (MontaVista) - initial API and implementation + * Yu-Fen Kuo (MontaVista) - [227572] RSE Terminal doesn't reset the "connected" state when the shell exits * Martin Oberhuber (Wind River) - [228577] [rseterminal] Further cleanup + * Anna Dushistova (MontaVista) - [240530][rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv ********************************************************************************/ package org.eclipse.rse.subsystems.terminals.core.elements; @@ -20,12 +21,6 @@ import org.eclipse.rse.subsystems.terminals.core.ITerminalServiceSubSystem; /** * An element in the RSE Tree that resembles a Terminal connection. * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

*/ public class TerminalElement extends AbstractResource { private String name; diff --git a/rse/plugins/org.eclipse.rse.subsystems.terminals.ssh/src/org/eclipse/rse/subsystems/terminals/ssh/SshTerminalSubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.subsystems.terminals.ssh/src/org/eclipse/rse/subsystems/terminals/ssh/SshTerminalSubSystemConfiguration.java index 3d9119273ad..7a4ff7061b7 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.terminals.ssh/src/org/eclipse/rse/subsystems/terminals/ssh/SshTerminalSubSystemConfiguration.java +++ b/rse/plugins/org.eclipse.rse.subsystems.terminals.ssh/src/org/eclipse/rse/subsystems/terminals/ssh/SshTerminalSubSystemConfiguration.java @@ -1,12 +1,13 @@ /******************************************************************************* - * Copyright (c) 2008 MontaVista Software, Inc. + * Copyright (c) 2008, 2009 MontaVista Software, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Yu-Fen Kuo (MontaVista)- initial API and implementation + * Yu-Fen Kuo (MontaVista) - initial API and implementation + * Anna Dushistova (MontaVista) - [240530][rseterminal][apidoc] Add terminals.rse Javadoc into org.eclipse.rse.doc.isv *******************************************************************************/ package org.eclipse.rse.subsystems.terminals.ssh; @@ -25,12 +26,6 @@ import org.eclipse.rse.subsystems.terminals.core.TerminalServiceSubSystemConfigu /** * An SSH Terminal Subsystem Factory. * - *

- * EXPERIMENTAL. This class or interface has been added as part - * of a work in progress. There is no guarantee that this API will work or that - * it will remain the same. Please do not use this API without consulting with - * the Target Management team. - *

*/ public class SshTerminalSubSystemConfiguration extends TerminalServiceSubSystemConfiguration {