KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > incava > qualog > QlCollection


1 package org.incava.qualog;
2
3 import java.io.*;
4 import java.util.*;
5
6
7 /**
8  * Wraps Collections for output.
9  */

10 public class QlCollection
11 {
12     public static boolean stack(QlLevel level,
13                                 ANSIColor[] msgColors,
14                                 String JavaDoc name,
15                                 Collection c,
16                                 ANSIColor fileColor,
17                                 ANSIColor classColor,
18                                 ANSIColor methodColor,
19                                 int numFrames)
20     {
21         Object JavaDoc[] ary = c.toArray();
22         return QlObjectArray.stack(level, msgColors, name, ary, fileColor, classColor, methodColor, numFrames);
23     }
24 }
25
26
Popular Tags