blob: 1bf9ec7d3125852e6e1fd5bf2d7ced181e7474ff [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.ant.internal.ui;
public interface IAntPreferenceConstants {
// for the Ant preference page
public static final String AUTO_SAVE = "Ant.autoSave";
public static final String OUPUT_LEVEL = "Ant.outputLevel";
public static final String INFO_LEVEL = "Ant.infoLevel";
public static final String VERBOSE_LEVEL = "Ant.verboseLevel";
public static final String DEBUG_LEVEL = "Ant.levelLevel";
// Colors and police for the Ant Console
public static final String CONSOLE_ERROR_RGB = "Ant.Console.errorColor";
public static final String CONSOLE_WARNING_RGB = "Ant.Console.warningColor";
public static final String CONSOLE_INFO_RGB = "Ant.Console.infoColor";
public static final String CONSOLE_VERBOSE_RGB = "Ant.Console.verboseColor";
public static final String CONSOLE_DEBUG_RGB = "Ant.Console.debugColor";
public static final String CONSOLE_FONT = "Ant.Console.font";
}