Index: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/mapping/OptimalMappingSelector.java |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | import de.brightbyte.data.cursor.DataCursor; |
13 | 13 | import de.brightbyte.util.PersistenceException; |
14 | 14 | import de.brightbyte.wikiword.integrator.data.FeatureSet; |
15 | | -import de.brightbyte.wikiword.integrator.store.MappingStore; |
| 15 | +import de.brightbyte.wikiword.integrator.store.MappingFeatureStore; |
16 | 16 | |
17 | 17 | public class OptimalMappingSelector implements MappingProcessor { |
18 | 18 | |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | } |
37 | 37 | |
38 | 38 | public void processMappings(DataCursor<MappingCandidates> cursor, |
39 | | - MappingStore store) throws PersistenceException { |
| 39 | + MappingFeatureStore store) throws PersistenceException { |
40 | 40 | |
41 | 41 | MappingCandidates m; |
42 | 42 | while ((m = cursor.next()) != null ) { |
Index: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/mapping/MappingPassThrough.java |
— | — | @@ -3,12 +3,12 @@ |
4 | 4 | import de.brightbyte.data.cursor.DataCursor; |
5 | 5 | import de.brightbyte.util.PersistenceException; |
6 | 6 | import de.brightbyte.wikiword.integrator.data.FeatureSet; |
7 | | -import de.brightbyte.wikiword.integrator.store.MappingStore; |
| 7 | +import de.brightbyte.wikiword.integrator.store.MappingFeatureStore; |
8 | 8 | |
9 | 9 | public class MappingPassThrough implements MappingProcessor { |
10 | 10 | |
11 | 11 | public void processMappings(DataCursor<MappingCandidates> cursor, |
12 | | - MappingStore store) throws PersistenceException { |
| 12 | + MappingFeatureStore store) throws PersistenceException { |
13 | 13 | |
14 | 14 | MappingCandidates m; |
15 | 15 | while ((m = cursor.next()) != null ) { |
Index: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/mapping/MappingProcessor.java |
— | — | @@ -2,8 +2,8 @@ |
3 | 3 | |
4 | 4 | import de.brightbyte.data.cursor.DataCursor; |
5 | 5 | import de.brightbyte.util.PersistenceException; |
6 | | -import de.brightbyte.wikiword.integrator.store.MappingStore; |
| 6 | +import de.brightbyte.wikiword.integrator.store.MappingFeatureStore; |
7 | 7 | |
8 | 8 | public interface MappingProcessor { |
9 | | - public void processMappings(DataCursor<MappingCandidates> cursor, MappingStore store) throws PersistenceException; |
| 9 | + public void processMappings(DataCursor<MappingCandidates> cursor, MappingFeatureStore store) throws PersistenceException; |
10 | 10 | } |
Index: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/store/MappingStore.java |
— | — | @@ -1,8 +0,0 @@ |
2 | | -package de.brightbyte.wikiword.integrator.store; |
3 | | - |
4 | | -import de.brightbyte.util.PersistenceException; |
5 | | -import de.brightbyte.wikiword.integrator.data.FeatureSet; |
6 | | - |
7 | | -public interface MappingStore { |
8 | | - public void storeMapping(FeatureSet source, FeatureSet target, FeatureSet props) throws PersistenceException; |
9 | | -} |
Index: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/store/MappingFeatureStore.java |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +package de.brightbyte.wikiword.integrator.store; |
| 3 | + |
| 4 | +import de.brightbyte.util.PersistenceException; |
| 5 | +import de.brightbyte.wikiword.integrator.data.FeatureSet; |
| 6 | + |
| 7 | +public interface MappingFeatureStore { |
| 8 | + public void storeMapping(FeatureSet source, FeatureSet target, FeatureSet props) throws PersistenceException; |
| 9 | +} |
Property changes on: trunk/WikiWord/WikiWordIntegrator/src/main/java/de/brightbyte/wikiword/integrator/store/MappingFeatureStore.java |
___________________________________________________________________ |
Name: svn:mergeinfo |
1 | 10 | + |