Skip to main content
summaryrefslogblamecommitdiffstats
blob: b1ba61f9bd4282119225dc370f95b85394d83a2c (plain) (tree)







































                                                                                  
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.util;

import org.eclipse.osee.framework.ui.plugin.util.Debug;

/**
 * @author Donald G. Dunne
 */
public class SkynetGuiDebug extends Debug {

   protected String getPluginName() {
      return "SkynetGui";
   }

   /**
    * @param debugOn
    * @param timeStampOn
    * @param nameSpace
    */
   public SkynetGuiDebug(boolean debugOn, boolean timeStampOn, String nameSpace) {
      super(debugOn, timeStampOn, nameSpace);
   }

   /**
    * @param debugOn
    * @param nameSpace
    */
   public SkynetGuiDebug(boolean debugOn, String nameSpace) {
      super(debugOn, nameSpace);
   }
}

Back to the top