LUCENE-3731: fix javadoc warnings, add uima to eclipse project

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1244350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2012-02-15 04:41:32 +00:00
parent 8d9bfe9245
commit cea3acb111
3 changed files with 5 additions and 3 deletions

View File

@ -37,6 +37,8 @@
<classpathentry kind="src" path="modules/analysis/stempel/src/test"/>
<classpathentry kind="src" path="modules/analysis/morfologik/src/java"/>
<classpathentry kind="src" path="modules/analysis/morfologik/src/test"/>
<classpathentry kind="src" path="modules/analysis/uima/src/java"/>
<classpathentry kind="src" path="modules/analysis/uima/src/test"/>
<classpathentry kind="src" path="modules/benchmark/src/java"/>
<classpathentry kind="src" path="modules/benchmark/src/test"/>
<classpathentry kind="src" path="modules/facet/src/java"/>

View File

@ -28,7 +28,7 @@ public interface AEProvider {
/**
*
* @return
* @return AnalysisEngine
* @throws ResourceInitializationException
*/
public AnalysisEngine getAE() throws ResourceInitializationException;

View File

@ -45,7 +45,7 @@ public class AEProviderFactory {
*
* @param keyPrefix
* @param aePath
* @return
* @return AEProvider
*/
public synchronized AEProvider getAEProvider(String keyPrefix, String aePath) {
String key = new StringBuilder(keyPrefix).append(aePath).append(BasicAEProvider.class).toString();
@ -60,7 +60,7 @@ public class AEProviderFactory {
* @param keyPrefix
* @param aePath
* @param runtimeParameters
* @return
* @return AEProvider
*/
public synchronized AEProvider getAEProvider(String keyPrefix, String aePath,
Map<String, Object> runtimeParameters) {