Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tm.te.runtime.statushandler/src/org/eclipse/tm/te/runtime/statushandler/interfaces/IStatusHandlerConstants.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.runtime.statushandler/src/org/eclipse/tm/te/runtime/statushandler/interfaces/IStatusHandlerConstants.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/target_explorer/plugins/org.eclipse.tm.te.runtime.statushandler/src/org/eclipse/tm/te/runtime/statushandler/interfaces/IStatusHandlerConstants.java b/target_explorer/plugins/org.eclipse.tm.te.runtime.statushandler/src/org/eclipse/tm/te/runtime/statushandler/interfaces/IStatusHandlerConstants.java
deleted file mode 100644
index 00d1dc1de..000000000
--- a/target_explorer/plugins/org.eclipse.tm.te.runtime.statushandler/src/org/eclipse/tm/te/runtime/statushandler/interfaces/IStatusHandlerConstants.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Wind River Systems, Inc. and others. 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:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.tm.te.runtime.statushandler.interfaces;
-
-/**
- * Status handler constants.
- */
-public interface IStatusHandlerConstants {
-
- /**
- * The id of the default status handler.
- */
- public final static String ID_DEFAUT_HANDLER = "org.eclipse.tm.te.statushandler.default"; //$NON-NLS-1$
-
- /**
- * The status to handle is a question (yes/no) (value 0x100).
- */
- public final static int QUESTION = 0x100;
-
- /**
- * The status to handle is a question (yes/no) with cancel (value 0x200).
- */
- public final static int YES_NO_CANCEL = 0x200;
-
- /**
- * Property: The title of the message dialog.
- * The value is expected to be a string.
- */
- public final static String PROPERTY_TITLE = "title"; //$NON-NLS-1$
-
- /**
- * Property: An string array listing the labels of the message dialog buttons.
- * If <code>null</code>, the default labeling, typically &quot;OK&quot;
- * for a single button message dialog, will be applied.
- */
- public final static String PROPERTY_BUTTON_LABEL = "buttonLabel"; //$NON-NLS-1$
-
- /**
- * Property: The context help id of the message dialog.
- * The value is expected to be a string.
- */
- public final static String PROPERTY_CONTEXT_HELP_ID = "contextHelpId"; //$NON-NLS-1$
-
- /**
- * Property: The preference slot id for the &quot;don't ask again&quot; checkbox.
- * The value is expected to be a string.
- */
- public final static String PROPERTY_DONT_ASK_AGAIN_ID = "dontAskAgainId"; //$NON-NLS-1$
-
- /**
- * Property: The caller of the status handler. The value is expected to
- * be the caller object or the callers class object.
- */
- public final static String PROPERTY_CALLER = "caller"; //$NON-NLS-1$
-
- /**
- * Property: The result of the status handling.
- */
- public final static String PROPERTY_RESULT = "result"; //$NON-NLS-1$
-}

Back to the top