Lines Matching refs:indent

73         int indent = 0;
76 dumpPackage((PackageAPI)(iter.next()), indent);
84 * @param indent The number of spaces to indent the output.
86 public void dumpPackage(PackageAPI pkg, int indent) {
87 for (int i = 0; i < indent; i++) System.out.print(" ");
91 dumpClass((ClassAPI)(iter.next()), indent + indentInc);
104 * @param indent The number of spaces to indent the output.
106 public static void dumpClass(ClassAPI c, int indent) {
107 for (int i = 0; i < indent; i++) System.out.print(" ");
113 for (int i = 0; i < indent; i++) System.out.print(" ");
117 for (int i = 0; i < indent; i++) System.out.print(" ");
122 for (int i = 0; i < indent + 2; i++) System.out.print(" ");
130 dumpModifiers(c.modifiers_, indent);
134 dumpCtor((ConstructorAPI)(iter.next()), indent + indentInc);
139 dumpMethod((MethodAPI)(iter.next()), indent + indentInc);
144 dumpField((FieldAPI)(iter.next()), indent + indentInc);
158 * @param indent The number of spaces to indent the output.
160 public static void dumpModifiers(Modifiers m, int indent) {
161 for (int i = 0; i < indent; i++) System.out.print(" ");
176 * @param indent The number of spaces to indent the output.
178 public static void dumpCtor(ConstructorAPI c, int indent) {
179 for (int i = 0; i < indent; i++) System.out.print(" ");
184 dumpModifiers(c.modifiers_, indent);
196 * @param indent The number of spaces to indent the output.
198 public static void dumpMethod(MethodAPI m, int indent) {
201 for (int i = 0; i < indent; i++) System.out.print(" ");
219 dumpModifiers(m.modifiers_, indent);
223 dumpParam((ParamAPI)(iter.next()), indent + indentInc);
237 * @param indent The number of spaces to indent the output.
239 public static void dumpField(FieldAPI f, int indent) {
242 for (int i = 0; i < indent; i++) System.out.print(" ");
251 dumpModifiers(f.modifiers_, indent);
262 * @param indent The number of spaces to indent the output.
264 public static void dumpParam(ParamAPI p, int indent) {
265 for (int i = 0; i < indent; i++) System.out.print(" ");