samples/componentinjection/anagram-modular/src-word-static/org/apidesign/anagram/wordstatic/StaticWordLibrary.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:07:21 +0200
changeset 230 3282ef5328a8
parent 216 0be61dc2e9b5
permissions -rw-r--r--
Yet another example of spring autoconfiguration
jtulach@216
     1
jtulach@216
     2
package org.apidesign.anagram.wordstatic;
jtulach@216
     3
jtulach@216
     4
import org.apidesign.anagram.api.WordLibrary;
jtulach@216
     5
jtulach@216
     6
jtulach@230
     7
public class StaticWordLibrary implements WordLibrary {
jtulach@216
     8
    private static String wordList[] = {
jtulach@216
     9
        "abstraction",
jtulach@216
    10
        "ambiguous",
jtulach@216
    11
        "arithmetic",
jtulach@216
    12
        "backslash",
jtulach@216
    13
        "bitmap",
jtulach@216
    14
        "circumstance",
jtulach@216
    15
        "combination",
jtulach@216
    16
        "consequently",
jtulach@216
    17
        "consortium",
jtulach@216
    18
        "decrementing",
jtulach@216
    19
        "dependency",
jtulach@216
    20
        "disambiguate",
jtulach@216
    21
        "dynamic",
jtulach@216
    22
        "encapsulation",
jtulach@216
    23
        "equivalent",
jtulach@216
    24
        "expression",
jtulach@216
    25
        "facilitate",
jtulach@216
    26
        "fragment",
jtulach@216
    27
        "hexadecimal",
jtulach@216
    28
        "implementation",
jtulach@216
    29
        "indistinguishable",
jtulach@216
    30
        "inheritance",
jtulach@216
    31
        "internet",
jtulach@216
    32
        "java",
jtulach@216
    33
        "localization",
jtulach@216
    34
        "microprocessor",
jtulach@216
    35
        "navigation",
jtulach@216
    36
        "optimization",
jtulach@216
    37
        "parameter",
jtulach@216
    38
        "patrick",
jtulach@216
    39
        "pickle",
jtulach@216
    40
        "polymorphic",
jtulach@216
    41
        "rigorously",
jtulach@216
    42
        "simultaneously",
jtulach@216
    43
        "specification",
jtulach@216
    44
        "structure",
jtulach@216
    45
        "lexical",
jtulach@216
    46
        "likewise",
jtulach@216
    47
        "management",
jtulach@216
    48
        "manipulate",
jtulach@216
    49
        "mathematics",
jtulach@216
    50
        "hotjava",
jtulach@216
    51
        "vertex",
jtulach@216
    52
        "unsigned",
jtulach@216
    53
        "traditional"};
jtulach@216
    54
jtulach@216
    55
    public String[] getWords() {
jtulach@216
    56
        return wordList;
jtulach@216
    57
    }
jtulach@216
    58
}