01: package org.incava.qualog;
02:
03: import java.io.*;
04: import java.util.*;
05:
06: /**
07: * Wraps Collections for output.
08: */
09: public class QlCollection {
10: public static boolean stack(QlLevel level, ANSIColor[] msgColors,
11: String name, Collection c, ANSIColor fileColor,
12: ANSIColor classColor, ANSIColor methodColor, int numFrames) {
13: Object[] ary = c.toArray();
14: return QlObjectArray.stack(level, msgColors, name, ary,
15: fileColor, classColor, methodColor, numFrames);
16: }
17: }
|