1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

Fix Javadoc Typos

This commit is contained in:
Martin Oberhuber 2008-04-04 10:05:58 +00:00
parent 80500e6983
commit 8aa10a977d

View file

@ -7,10 +7,10 @@
* *
* Initial Contributors: * Initial Contributors:
* The following IBM employees contributed to the Remote System Explorer * The following IBM employees contributed to the Remote System Explorer
* component that contains this file: David McKnight, Kushal Munir, * component that contains this file: David McKnight, Kushal Munir,
* Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson, * Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
* *
* Contributors: * Contributors:
* {Name} (company) - description of contribution. * {Name} (company) - description of contribution.
*******************************************************************************/ *******************************************************************************/
@ -24,27 +24,27 @@ import org.eclipse.rse.core.filters.ISystemFilterPoolWrapper;
import org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation; import org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation;
/** /**
* The system filter wizard allows callers to pass a list of wrapper objects * The system filter wizard allows callers to pass a list of wrapper objects for
* for the user to select a filter pool. Effectively, this prompting for * the user to select a filter pool. Effectively, this prompting for euphemisms
* euphamisms to filter pools. This requires an array of wrapper objects, * to filter pools. This requires an array of wrapper objects, and requires
* and requires replacement mri for the pool prompt and tooltip text, and * replacement mri for the pool prompt and tooltip text, and the verbiage above
* the verbiage above it. * it.
* <p> * <p>
* This is all encapsulated in this class. The information is set via setters * This is all encapsulated in this class. The information is set via setters or
* or constructor parameters. * constructor parameters.
*/ */
public class SystemFilterPoolWrapperInformation public class SystemFilterPoolWrapperInformation
implements ISystemFilterPoolWrapperInformation implements ISystemFilterPoolWrapperInformation
{ {
private String promptLabel, promptTooltip, verbiageLabel; private String promptLabel, promptTooltip, verbiageLabel;
private Vector wrappers; private Vector wrappers;
private ISystemFilterPoolWrapper[] wrapperArray; private ISystemFilterPoolWrapper[] wrapperArray;
private ISystemFilterPoolWrapper preSelectWrapper; private ISystemFilterPoolWrapper preSelectWrapper;
/** /**
* Constructor for SystemFilterPoolWrapperInformation. * Constructor for SystemFilterPoolWrapperInformation.
*/ */
public SystemFilterPoolWrapperInformation(String promptLabel, String promptTooltip, String verbiageLabel) public SystemFilterPoolWrapperInformation(String promptLabel, String promptTooltip, String verbiageLabel)
{ {
super(); super();
this.promptLabel= promptLabel; this.promptLabel= promptLabel;
@ -52,7 +52,7 @@ public class SystemFilterPoolWrapperInformation
this.promptLabel= promptTooltip; this.promptLabel= promptTooltip;
wrappers = new Vector(); wrappers = new Vector();
} }
/** /**
* Add a wrapper object * Add a wrapper object
*/ */
@ -68,7 +68,7 @@ public class SystemFilterPoolWrapperInformation
SystemFilterPoolWrapper wrapper = new SystemFilterPoolWrapper(displayName, poolToWrap); SystemFilterPoolWrapper wrapper = new SystemFilterPoolWrapper(displayName, poolToWrap);
wrappers.add(wrapper); wrappers.add(wrapper);
if (preSelect) if (preSelect)
preSelectWrapper = wrapper; preSelectWrapper = wrapper;
} }
/** /**
* Set the wrapper to preselect * Set the wrapper to preselect
@ -80,26 +80,26 @@ public class SystemFilterPoolWrapperInformation
public String getPromptLabel() public String getPromptLabel()
{ {
return promptLabel; return promptLabel;
} }
public String getPromptTooltip() public String getPromptTooltip()
{ {
return promptTooltip; return promptTooltip;
} }
public String getVerbiageLabel() public String getVerbiageLabel()
{ {
return verbiageLabel; return verbiageLabel;
} }
/** /**
* @see org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation#getWrappers() * @see org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation#getWrappers()
*/ */
public ISystemFilterPoolWrapper[] getWrappers() public ISystemFilterPoolWrapper[] getWrappers()
{ {
if (wrapperArray == null) if (wrapperArray == null)
{ {
@ -113,14 +113,14 @@ public class SystemFilterPoolWrapperInformation
/** /**
* @see org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation#getPreSelectWrapper() * @see org.eclipse.rse.core.filters.ISystemFilterPoolWrapperInformation#getPreSelectWrapper()
*/ */
public ISystemFilterPoolWrapper getPreSelectWrapper() public ISystemFilterPoolWrapper getPreSelectWrapper()
{ {
if (preSelectWrapper == null) if (preSelectWrapper == null)
{ {
if (wrappers.size() > 0) if (wrappers.size() > 0)
return (ISystemFilterPoolWrapper)wrappers.elementAt(0); return (ISystemFilterPoolWrapper)wrappers.elementAt(0);
else else
return null; return null;
} }
else else
return preSelectWrapper; return preSelectWrapper;