1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45: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
* and managing them as a list.
* A system filter pool is a means of grouping filters and managing them as a
* list.
* <p>
* To enable filters themselves to be automous and sharable, it is decided
* 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
* the responsibility of the programmer using a filter pool to set these
* attributes after creating or restoring a filter pool. Typically, this is
* what a filter pool manager (SystemFilterPoolManager) will do for you.
*/
/**
* @lastgen class SystemFilterPoolImpl extends SystemPersistableReferencedObjectImpl implements SystemFilterPool, SystemFilterSavePolicies, SystemFilterConstants, SystemFilterContainer, IAdaptable
* 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
* attributes other than the list of filters are transient and as such it is the
* responsibility of the programmer using a filter pool to set these attributes
* after creating or restoring a filter pool. Typically, this is what a filter
* pool manager (SystemFilterPoolManager) will do for you.
*/
public class SystemFilterPool extends SystemPersistableReferencedObject
implements ISystemFilterPool, IAdaptable
{
/**
/**
* The default value of the '{@link #getName() <em>Name</em>}' attribute.
*
* @see #getName()
*/
protected static final String NAME_EDEFAULT = null;
private String name;
/**
/**
* The default value of the '{@link #getType() <em>Type</em>}' attribute.
*
* @see #getType()
*/
protected static final String TYPE_EDEFAULT = null;
@ -73,9 +73,9 @@ public class SystemFilterPool extends SystemPersistableReferencedObject
private boolean initialized = false;
protected boolean specialCaseNoDataRestored = 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.
*/
protected String type = TYPE_EDEFAULT;