FileDocCategorySizeDatePackage
SimpleElement.javaAPI DocExample305Sat Apr 23 22:35:42 BST 2005None

SimpleElement.java

public class SimpleElement {
	StringBuffer text = new StringBuffer();
	public void addText( String s ) { text.append( s ); }
	public String getText() { return text.toString(); }
	public void setAttributeValue( String name, String value ) { 
		throw new Error( getClass()+": No attributes allowed");
	}
}