куафrefactor class for encoding letters

git-svn-id: https://russianmorphology.googlecode.com/svn/trunk@61 d817d54c-26ab-11de-abc9-2f7d1455ff7a
This commit is contained in:
alexander.a.kuznetsov 2009-10-16 15:31:01 +00:00
parent 7375ec6d47
commit 26ca704ec0
13 changed files with 20 additions and 20 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.io.BufferedReader;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
/**
* Represent inofrmation of how word form created form it imutible part.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.io.BufferedReader;
import java.io.FileInputStream;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.io.BufferedReader;
import java.io.FileInputStream;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.io.BufferedReader;
import java.io.FileInputStream;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import org.apache.lucene.morphology.Heuristic;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.util.ArrayList;
import java.util.List;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.dictionary;
package org.apache.lucene.morphology.dictionary;
import java.io.IOException;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.generator;
package org.apache.lucene.morphology.generator;
import org.apache.lucene.morpholgy.dictionary.DictonaryReader;
import org.apache.lucene.morpholgy.dictionary.GrammaReader;
import org.apache.lucene.morpholgy.dictionary.StatiticsCollector;
import org.apache.lucene.morpholgy.english.EnglishLetterDecoderEncoder;
import org.apache.lucene.morphology.dictionary.DictonaryReader;
import org.apache.lucene.morphology.dictionary.GrammaReader;
import org.apache.lucene.morphology.dictionary.StatiticsCollector;
import org.apache.lucene.morphology.english.EnglishLetterDecoderEncoder;
import java.io.IOException;
import java.util.HashSet;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.apache.lucene.morpholgy.generator;
package org.apache.lucene.morphology.generator;
import org.apache.lucene.morpholgy.dictionary.DictonaryReader;
import org.apache.lucene.morpholgy.dictionary.GrammaReader;
import org.apache.lucene.morpholgy.dictionary.StatiticsCollector;
import org.apache.lucene.morphology.dictionary.DictonaryReader;
import org.apache.lucene.morphology.dictionary.GrammaReader;
import org.apache.lucene.morphology.dictionary.StatiticsCollector;
import org.apache.lucene.morphology.russian.RussianLetterDecoderEncoder;
import java.io.IOException;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.morpholgy.english;
package org.apache.lucene.morphology.english;
import org.apache.lucene.morphology.LetterDecoderEncoder;
import org.apache.lucene.morphology.SuffixToLongException;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.morpholgy.english;
package org.apache.lucene.morphology.english;
import static org.hamcrest.core.IsEqual.equalTo;
import static org.junit.Assert.assertThat;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.morpholgy.english;
package org.apache.lucene.morphology.english;
import org.apache.lucene.morphology.LuceneMorph;
import org.junit.Before;