You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by tw...@apache.org on 2007/01/22 17:31:58 UTC

svn commit: r498678 - in /incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component: AnalysisComponent_ImplBase.java CasAnnotator_ImplBase.java CasMultiplier_ImplBase.java

Author: twgoetz
Date: Mon Jan 22 08:31:58 2007
New Revision: 498678

URL: http://svn.apache.org/viewvc?view=rev&rev=498678
Log:
No Jira: fix javadocs.

Modified:
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/AnalysisComponent_ImplBase.java
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasAnnotator_ImplBase.java
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasMultiplier_ImplBase.java

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/AnalysisComponent_ImplBase.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/AnalysisComponent_ImplBase.java?view=diff&rev=498678&r1=498677&r2=498678
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/AnalysisComponent_ImplBase.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/AnalysisComponent_ImplBase.java Mon Jan 22 08:31:58 2007
@@ -54,10 +54,10 @@
 
   /**
    * Notifies this AnalysisComponent that its configuration parameters have changed. This
-   * implementation just calls {@link #destroy()} followed by {@link #initialize()}. Subclasses can
+   * implementation just calls {@link #destroy()} followed by {@link #initialize(UimaContext)}. Subclasses can
    * override to provide more efficient reconfiguration logic if necessary.
    * 
-   * @see org.apache.uima.AnalysisComponent.AnalysisComponent#reconfigure()
+   * @see org.apache.uima.analysis_component.AnalysisComponent#reconfigure()
    */
   public void reconfigure() throws ResourceConfigurationException, ResourceInitializationException {
     destroy();
@@ -97,7 +97,7 @@
    * {@link #getResultSpecification()}. An AnalysisComponent implementation may override this
    * method if it would like to do specific processing when its ResultSpecificatin is changed.
    * 
-   * @see org.apache.uima.AnalysisComponent.AnalysisComponent#setResultSpecification(ResultSpecification)
+   * @see org.apache.uima.analysis_component.AnalysisComponent#setResultSpecification(ResultSpecification)
    */
   public void setResultSpecification(ResultSpecification aResultSpec) {
     mResultSpecification = aResultSpec;

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasAnnotator_ImplBase.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasAnnotator_ImplBase.java?view=diff&rev=498678&r1=498677&r2=498678
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasAnnotator_ImplBase.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasAnnotator_ImplBase.java Mon Jan 22 08:31:58 2007
@@ -69,21 +69,21 @@
    * @param aCAS
    *          A CAS that this AnalysisComponent should process.
    * 
-   * @throws AnalysisComponentException
+   * @throws AnalysisEngineProcessException
    *           if a problem occurs during processing
    */
   public abstract void process(CAS aCAS) throws AnalysisEngineProcessException;
 
   /**
    * Informs this annotator that the CAS TypeSystem has changed. The Analysis Engine calls this
-   * method immediately following the call to {@link #initialize(AnnotatorContext)}, and will call
+   * method immediately following the call to {@link #initialize(org.apache.uima.UimaContext)}, and will call
    * it again whenever the CAS TypeSystem changes.
    * <p>
    * In this method, the Annotator should use the {@link TypeSystem} to resolve the names of Type
    * and Features to the actual {@link org.apache.uima.cas.Type} and
    * {@link org.apache.uima.cas.Feature} objects, which can then be used during processing.
    * 
-   * @throws AnnotatorEngineProcessException
+   * @throws AnalysisEngineProcessException
    *           if the provided type system is missing types or features required by this annotator
    */
   public void typeSystemInit(TypeSystem aTypeSystem) throws AnalysisEngineProcessException {

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasMultiplier_ImplBase.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasMultiplier_ImplBase.java?view=diff&rev=498678&r1=498677&r2=498678
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasMultiplier_ImplBase.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_component/CasMultiplier_ImplBase.java Mon Jan 22 08:31:58 2007
@@ -80,21 +80,21 @@
    * @param aCAS
    *          A CAS that this AnalysisComponent should process.
    * 
-   * @throws AnalysisComponentException
+   * @throws AnalysisEngineProcessException
    *           if a problem occurs during processing
    */
   public abstract void process(CAS aCAS) throws AnalysisEngineProcessException;
 
   /**
    * Informs this annotator that the CAS TypeSystem has changed. The Analysis Engine calls this
-   * method immediately following the call to {@link #initialize(AnnotatorContext)}, and will call
+   * method immediately following the call to {@link #initialize(org.apache.uima.UimaContext)}, and will call
    * it again whenever the CAS TypeSystem changes.
    * <p>
    * In this method, the Annotator should use the {@link TypeSystem} to resolve the names of Type
    * and Features to the actual {@link org.apache.uima.cas.Type} and
    * {@link org.apache.uima.cas.Feature} objects, which can then be used during processing.
    * 
-   * @throws AnnotatorEngineProcessException
+   * @throws AnalysisEngineProcessException
    *           if the provided type system is missing types or features required by this annotator
    */
   public void typeSystemInit(TypeSystem aTypeSystem) throws AnalysisEngineProcessException {