/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package bs_tree_test; /** * * @author suchenek */ public class flag { private static boolean n = false; public static void set() { n = true; } public static void clr() { n = false; } public static boolean get() { return n; } public static void out() { System.out.print(n); } public static void out(String pref) { System.out.print(pref + n); } public static void out(String pref, String suf) { System.out.print(pref + n + suf); } public static void outln() { System.out.println(n); } public static void outln(String pref) { System.out.println(pref + n); } public static void outln(String pref, String suf) { System.out.println(pref + n + suf); } }