Example #1
0
        // ===========================================================
        // Constructors
        // ===========================================================

        // ===========================================================
        // Getter & Setter
        // ===========================================================

        public static void SetDebugLevel(/* final */ DebugLevel pDebugLevel)
        {
            if (pDebugLevel == null)
            {
                throw new IllegalArgumentException("pDebugLevel must not be null!");
            }
            Debug.DEBUGLEVEL = pDebugLevel;
        }
Example #2
0
 public bool IsSameOrLessThan(DebugLevel otherDebugLevel)
 {
     return IsSameOrLessThan(otherDebugLevel.DebugValue);
 }
Example #3
0
 public DebugLevel(DebugLevel debugLevel)
 {
     Init(debugLevel.DebugValue);
 }