FileDocCategorySizeDatePackage
LoopPrinter.javaAPI DocExample2059Thu Feb 04 16:10:42 GMT 1999None

LoopPrinter

public class LoopPrinter extends Object

Fields Summary
private Vector[]
pStorage
Constructors Summary
public LoopPrinter(int size)

		pStorage = new Vector[size];
	
Methods Summary
public voidprint(int index, java.lang.Object obj)

		if (pStorage[index] == null) {
			pStorage[index] = new Vector();
		}
		pStorage[index].addElement(obj.toString());
	
public voidprintln(int index, java.lang.Object obj)

		print(index, obj);
		print(index, "\n");
	
public voidsend2stream(java.io.PrintStream ps)

		for (int i = 0; i < pStorage.length; i++) {
			if (pStorage[i] != null) {
				Enumeration e = pStorage[i].elements();
				while (e.hasMoreElements()) {
					ps.print(e.nextElement());
				}
			}
		}