package com.abl.crypto; //PlainText: /** describes text acceptable for encryption @version 1/19/2001 @author I made this. -- prie, 1/18/2001 */ final public class PlainText { private StringBuffer stringBuffer; public PlainText() { stringBuffer = new StringBuffer(100000); } public void append(String text) { stringBuffer.append( this.convert(text) ); } public String toString() { //override Object method return stringBuffer.toString(); } private StringBuffer convert(String text) { StringBuffer newText = new StringBuffer(); newText.append( text.toUpperCase() ); return newText; } }