Home | History | Annotate | Download | only in header

Lines Matching defs:Indentation

37 class Indentation {
39 private int indentation;
44 protected Indentation() {
45 indentation = 0;
54 protected Indentation(int initval) {
55 indentation = initval;
59 * set the indentation field
65 indentation = initval;
69 * get the number of indentation.
74 return indentation;
78 * increment the indentation field
81 indentation++;
85 * decrement the indentation field
88 indentation--;
92 * get the indentation
97 char[] chars = new char[indentation];