Gant 1.9.8

org.codehaus.gant
[Java] Class GantState

java.lang.Object
  org.codehaus.gant.GantState

public class GantState

A class to hold the shared global state for a run of Gant, also a variety of general-use constants are defined here.

This class was originally needed because parts of Gant are written in Java and parts in Groovy and it was not possible to compile them all at the same time. All references to Groovy classes had to be avoided in the Java classes so that the Java could be compiled and then the Groovy compiled. This class contains things that should be in the Gant class but could not be. All this is no longer true, so the material could go back into the Gant class.

Authors:
Russel Winder


Field Summary
static int DEBUG

static int ERRORS_ONLY

static int NORMAL

static int SILENT

Output no information ever.

static int VERBOSE

static int WARNINGS_AND_ERRORS

static boolean dryRun

static int verbosity

 
Method Summary
 
Methods inherited from class java.lang.Object
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Field Detail

DEBUG

public static final int DEBUG


ERRORS_ONLY

public static final int ERRORS_ONLY


NORMAL

public static final int NORMAL


SILENT

public static final int SILENT
Output no information ever.


VERBOSE

public static final int VERBOSE


WARNINGS_AND_ERRORS

public static final int WARNINGS_AND_ERRORS


dryRun

public static boolean dryRun


verbosity

public static int verbosity


 

Copyright © 2006–12 The Codehaus. All Rights Reserved.