Fixed GUMP reported errors.

This commit is contained in:
Oliver Burn 2003-03-04 10:53:24 +00:00
parent b5126f45c4
commit ca80f50be8
4 changed files with 12 additions and 12 deletions

View File

@ -19,9 +19,9 @@
package com.puppycrawl.tools.checkstyle.api;
/**
* A component that can be configured.
* The general idea of Configuration/Configurable was taken from
* <a target="_top" href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* A component that can be configured. The general idea of
* Configuration/Configurable was taken from <a target="_top"
* href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* @author lkuehne
*/
public interface Configurable

View File

@ -22,9 +22,9 @@ import java.io.Serializable;
/**
* A Configuration is used to configure a Configurable component.
* The general idea of Configuration/Configurable was taken from
* <a target="_top" href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* A Configuration is used to configure a Configurable component. The general
* idea of Configuration/Configurable was taken from <a target="_top"
* href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* @author lkuehne
*/
public interface Configuration extends Serializable

View File

@ -19,9 +19,9 @@
package com.puppycrawl.tools.checkstyle.api;
/**
* A context to be used in subcomponents.
* The general idea of Context/Contextualizable was taken from
* <a target="_top" href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* A context to be used in subcomponents. The general idea of
* Context/Contextualizable was taken from <a target="_top"
* href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* @author lkuehne
* @see Contextualizable
*/

View File

@ -22,9 +22,9 @@ package com.puppycrawl.tools.checkstyle.api;
/**
* A Component that needs context information from it's container to work.
* The container will create a Context object and pass it to this
* Contextualizable. Contextualization will occur before configuration.
* The general idea of Context/Contextualizable was taken from
* <a target="_top" href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* Contextualizable. Contextualization will occur before configuration. The
* general idea of Context/Contextualizable was taken from <a target="_top"
* href="http://jakarta.apache.org/avalon/">Jakarta's Avalon framework</a>.
* @author lkuehne
*/
public interface Contextualizable