Index: trunk/WikiWord/WikiWord/src/main/java/de/brightbyte/wikiword/disambig/SlidingCoherenceDisambiguator.java |
— | — | @@ -155,4 +155,20 @@ |
156 | 156 | return getSequenceInterpretations(frame, mset); |
157 | 157 | } |
158 | 158 | |
| 159 | + public int getInitialWindow() { |
| 160 | + return initialWindow; |
| 161 | + } |
| 162 | + |
| 163 | + public void setInitialWindow(int initialWindow) { |
| 164 | + this.initialWindow = initialWindow; |
| 165 | + } |
| 166 | + |
| 167 | + public int getWindow() { |
| 168 | + return window; |
| 169 | + } |
| 170 | + |
| 171 | + public void setWindow(int window) { |
| 172 | + this.window = window; |
| 173 | + } |
| 174 | + |
159 | 175 | } |