Package org.jboss.util.xml.catalog.helpers

Examples of org.jboss.util.xml.catalog.helpers.Debug


   */
  public Debug debug = null;

  /** Constructor. */
  public CatalogManager() {
    debug = new Debug();
    // Note that we don't setDebug() here; we do that lazily. Either the
    // user will set it explicitly, or we'll do it automagically if they
    // read from the propertyFile for some other reason. That way, there's
    // no attempt to read from the file before the caller has had a chance
    // to avoid it.
View Full Code Here


  /** Constructor that specifies an explicit property file. */
  public CatalogManager(String propertyFile) {
    this.propertyFile = propertyFile;

    debug = new Debug();
    // Note that we don't setDebug() here; we do that lazily. Either the
    // user will set it explicitly, or we'll do it automagically if they
    // read from the propertyFile for some other reason. That way, there's
    // no attempt to read from the file before the caller has had a chance
    // to avoid it.
View Full Code Here

   */
  public Debug debug = null;

  /** Constructor. */
  public CatalogManager() {
    debug = new Debug();
    // Note that we don't setDebug() here; we do that lazily. Either the
    // user will set it explicitly, or we'll do it automagically if they
    // read from the propertyFile for some other reason. That way, there's
    // no attempt to read from the file before the caller has had a chance
    // to avoid it.
View Full Code Here

  /** Constructor that specifies an explicit property file.
* @param propertyFile */
  public CatalogManager(String propertyFile) {
    this.propertyFile = propertyFile;

    debug = new Debug();
    // Note that we don't setDebug() here; we do that lazily. Either the
    // user will set it explicitly, or we'll do it automagically if they
    // read from the propertyFile for some other reason. That way, there's
    // no attempt to read from the file before the caller has had a chance
    // to avoid it.
View Full Code Here

/*     */
/* 240 */   public Debug debug = null;
/*     */
/*     */   public CatalogManager()
/*     */   {
/* 244 */     this.debug = new Debug();
/*     */   }
View Full Code Here

/*     */
/*     */   public CatalogManager(String propertyFile)
/*     */   {
/* 254 */     this.propertyFile = propertyFile;
/*     */
/* 256 */     this.debug = new Debug();
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.util.xml.catalog.helpers.Debug

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.