]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/EntryTypeName.java
Highlight text in WebView.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntryTypeName.java
index c65db05bcf104249a0d611bd54e3e0dff6d77382..333ee2052a54d26d445c88b5f10cbc7322896407 100644 (file)
@@ -1,42 +1,75 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 package com.hughes.android.dictionary.engine;
 
 
 public enum EntryTypeName {
 
-  WIKTIONARY_TITLE_ONE_WORD(0),
-  WIKTIONARY_MEANING_ONE_WORD(0),
-  WIKTIONARY_TRANSLATION_ONE_WORD(0),
-  
-  NOUN(0),
-  VERB(0),
-  ADJ(0),
-  ADV(0),
-  ONE_WORD(0),
-  MULTIROW_HEAD_ONE_WORD(0),
-  MULTIROW_TAIL_ONE_WORD(0),
-
-  WIKTIONARY_TITLE_MULTI_WORD(0),
-  WIKTIONARY_MEANING_MULTI_WORD(0),
-  WIKTIONARY_FORM_OF(0),
-  WIKTIONARY_EXAMPLE_HEADWORDS(0),
-  TWO_WORDS(0),
-  THREE_WORDS(0),
-  FOUR_WORDS(0),
-  FIVE_OR_MORE_WORDS(0),
-  WIKTIONARY_EXAMPLE_OTHER_WORDS(0),
-  
-  MULTIROW_HEAD_MANY_WORDS(0),
-  MULTIROW_TAIL_MANY_WORDS(0),
-  PART_OF_HYPHENATED(0),
-  BRACKETED(0),
-  PARENTHESIZED(0),
-  SEE_ALSO(0), 
+  WIKTIONARY_TITLE_SINGLE_DETAIL(true, true, null),
+  WIKTIONARY_TITLE_SINGLE(true, true, null),
+  WIKTIONARY_INFLECTD_FORM_SINGLE(false, true, null),
+
+
+  ONE_WORD(true, true, null),
+  MULTIROW_HEAD_ONE_WORD(true, true, null),
+  MULTIROW_TAIL_ONE_WORD(false, true, null),
+
+  WIKTIONARY_TITLE_MULTI_DETAIL(false, true, WIKTIONARY_TITLE_SINGLE_DETAIL),
+  WIKTIONARY_TITLE_MULTI(false, true, WIKTIONARY_TITLE_SINGLE),
+  WIKTIONARY_TRANSLITERATION(),
+  // How we file "casa {f}, case {pl}" under "case"
+  WIKTIONARY_INFLECTED_FORM_MULTI(false, true, WIKTIONARY_INFLECTD_FORM_SINGLE),
+  WIKTIONARY_ENGLISH_DEF_WIKI_LINK(),
+  WIKTIONARY_ENGLISH_DEF_OTHER_LANG(),
+  WIKTIONARY_ENGLISH_DEF(),
+
+  TWO_WORDS(),
+  THREE_WORDS(),
+  FOUR_WORDS(),
+  FIVE_OR_MORE_WORDS(),
+  WIKTIONARY_TRANSLATION_WIKI_TEXT(),
+  WIKTIONARY_TRANSLATION_OTHER_TEXT(),
+
+  // How we file entries like: "sono: {form of|essere}" under "sono.".
+  WIKTIONARY_IS_FORM_OF_SOMETHING_ELSE(false, true, null),
+
+  MULTIROW_HEAD_MANY_WORDS(),
+  MULTIROW_TAIL_MANY_WORDS(),
+  WIKTIONARY_EXAMPLE(),
+  // The next two are how we file entries like: "sono: {form of|essere}" under "essere".
+  WIKTIONARY_BASE_FORM_SINGLE(),  // These two should be eligible for removal if the links are otherwise present.
+  WIKTIONARY_BASE_FORM_MULTI(false, false, WIKTIONARY_BASE_FORM_SINGLE),
+  PART_OF_HYPHENATED(),
+  BRACKETED(),
+  PARENTHESIZED(),
+  WIKTIONARY_TRANSLATION_SENSE(),
+  SEE_ALSO(), 
   ;
 
-  final int nameResId;
+  final boolean mainWord;
+  final boolean overridesStopList;
+  final EntryTypeName singleWordInstance;
   
-  private EntryTypeName(final int nameResId) {
-    this.nameResId = nameResId;
+  private EntryTypeName() {
+    this(false, false, null);
+  }
+
+  private EntryTypeName(final boolean mainWord, final boolean overridesStopList, final EntryTypeName singleWordInstance) {
+    this.mainWord = mainWord;
+    this.overridesStopList = overridesStopList;
+    this.singleWordInstance = singleWordInstance == null ? this : singleWordInstance;
   }
 
 }