1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[cleanup] fix typo

This commit is contained in:
Martin Oberhuber 2008-05-02 13:38:29 +00:00
parent 9d930e4e22
commit 07ff185a8d

View file

@ -37,32 +37,32 @@ import org.eclipse.rse.internal.references.SystemPersistableReferencedObject;
/** /**
* This is a system filter pool, which is a means of grouping filters * A system filter pool is a means of grouping filters and managing them as a
* and managing them as a list. * list.
* <p> * <p>
* To enable filters themselves to be automous and sharable, it is decided * To enable filters themselves to be autonomous and sharable, it is decided
* that no data will be persisted in the filter pool itself. Rather, all * that no data will be persisted in the filter pool itself. Rather, all
* attributes other than the list of filters are transient and as such it is * attributes other than the list of filters are transient and as such it is the
* the responsibility of the programmer using a filter pool to set these * responsibility of the programmer using a filter pool to set these attributes
* attributes after creating or restoring a filter pool. Typically, this is * after creating or restoring a filter pool. Typically, this is what a filter
* what a filter pool manager (SystemFilterPoolManager) will do for you. * pool manager (SystemFilterPoolManager) will do for you.
*/
/**
* @lastgen class SystemFilterPoolImpl extends SystemPersistableReferencedObjectImpl implements SystemFilterPool, SystemFilterSavePolicies, SystemFilterConstants, SystemFilterContainer, IAdaptable
*/ */
public class SystemFilterPool extends SystemPersistableReferencedObject public class SystemFilterPool extends SystemPersistableReferencedObject
implements ISystemFilterPool, IAdaptable implements ISystemFilterPool, IAdaptable
{ {
/** /**
* The default value of the '{@link #getName() <em>Name</em>}' attribute. * The default value of the '{@link #getName() <em>Name</em>}' attribute.
*
* @see #getName() * @see #getName()
*/ */
protected static final String NAME_EDEFAULT = null; protected static final String NAME_EDEFAULT = null;
private String name; private String name;
/**
/**
* The default value of the '{@link #getType() <em>Type</em>}' attribute. * The default value of the '{@link #getType() <em>Type</em>}' attribute.
*
* @see #getType() * @see #getType()
*/ */
protected static final String TYPE_EDEFAULT = null; protected static final String TYPE_EDEFAULT = null;
@ -73,9 +73,9 @@ public class SystemFilterPool extends SystemPersistableReferencedObject
private boolean initialized = false; private boolean initialized = false;
protected boolean specialCaseNoDataRestored = false; protected boolean specialCaseNoDataRestored = false;
private boolean debug = false; private boolean debug = false;
protected static final String DELIMITER = SystemFilterPoolReference.DELIMITER; protected static final String DELIMITER = SystemFilterPoolReference.DELIMITER;
/** /**
* @generated This field/method will be replaced during code generation. * @generated This field/method will be replaced during code generation.
*/ */
protected String type = TYPE_EDEFAULT; protected String type = TYPE_EDEFAULT;