/*
** j###t ########## #### ####
** j###t ########## #### ####
** j###T "###L J###"
** ######P' ########## #########
** ######k, ########## T######T
** ####~###L ####
** #### q###L ########## .#####
** #### \###L ########## #####"
**
** $Id$
**
** Class History
**
** Date Name Description
** ---------|------------|-----------------------------------------------
** 12Aug98 subtle start of history
**
*/
package key;
import java.util.StringTokenizer;
import java.io.*;
/**
* Some sort of note
*/
public class Memo extends Atom
{
public static final AtomicElement[] ELEMENTS =
{
AtomicElement.construct( Memo.class, String.class, "value",
AtomicElement.PUBLIC_FIELD,
"the contents of this memo" ),
};
public static final AtomicStructure STRUCTURE = new AtomicStructure( Atom.STRUCTURE, ELEMENTS );
public String value = "";
public Memo()
{
}
public AtomicStructure getDeclaredStructure()
{
return( STRUCTURE );
}
}