18 lines
342 B
Java
18 lines
342 B
Java
package org.thdl.tib.dictionary ;
|
|
|
|
import org.thdl.tib.dictionary.DictionaryEntryDefinition ;
|
|
|
|
class SimpleDictionaryEntryDefinition implements DictionaryEntryDefinition
|
|
{
|
|
String body ;
|
|
|
|
public SimpleDictionaryEntryDefinition ( String theBody )
|
|
{
|
|
body = theBody ;
|
|
}
|
|
|
|
public String toString ()
|
|
{
|
|
return body ;
|
|
}
|
|
}
|