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:
parent
9d930e4e22
commit
07ff185a8d
1 changed files with 73 additions and 73 deletions
|
@ -37,18 +37,15 @@ 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
|
||||
* 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.
|
||||
*/
|
||||
/**
|
||||
* @lastgen class SystemFilterPoolImpl extends SystemPersistableReferencedObjectImpl implements SystemFilterPool, SystemFilterSavePolicies, SystemFilterConstants, SystemFilterContainer, IAdaptable
|
||||
* 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
|
||||
|
@ -56,13 +53,16 @@ public class SystemFilterPool extends SystemPersistableReferencedObject
|
|||
|
||||
/**
|
||||
* 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;
|
||||
|
|
Loading…
Add table
Reference in a new issue