samples/componentinjection/anagram-modular/src-api/org/apidesign/anagram/api/WordLibrary.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:07:30 +0200
changeset 233 15d31c98a129
parent 215 43b122711ae1
permissions -rw-r--r--
Making the examples more appropriate for the book
jtulach@215
     1
jtulach@215
     2
package org.apidesign.anagram.api;
jtulach@215
     3
jtulach@233
     4
// BEGIN: anagram.api.library
jtulach@215
     5
public interface WordLibrary {
jtulach@215
     6
    public String[] getWords();
jtulach@215
     7
}
jtulach@233
     8
// END: anagram.api.library