mirror of https://github.com/apache/lucene.git
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:
parent
8d9bfe9245
commit
cea3acb111
|
@ -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"/>
|
||||
|
|
|
@ -28,7 +28,7 @@ public interface AEProvider {
|
|||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* @return AnalysisEngine
|
||||
* @throws ResourceInitializationException
|
||||
*/
|
||||
public AnalysisEngine getAE() throws ResourceInitializationException;
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue