KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > views > properties > tabbed > TabbedPropertyViewStatusCodes


1 /*******************************************************************************
2  * Copyright (c) 2001, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.views.properties.tabbed;
12
13 /**
14  * A list of status codes for this plug-in.
15  *
16  * @author Anthony Hunter
17  */

18 public final class TabbedPropertyViewStatusCodes {
19
20     /**
21      * This class should not be instantiated since it is a static constant
22      * class.
23      */

24     private TabbedPropertyViewStatusCodes() {
25         /* not used */
26     }
27
28     /**
29      * Status code indicating that everything is OK.
30      */

31     public static final int OK = 0;
32
33     /**
34      * Status code indicating that a tab was not found for the given tab id.
35      */

36     public static final int NO_TAB_ERROR = 1;
37
38     /**
39      * Status code indicating that issue was found loading the section extension
40      * configuration element.
41      */

42     public static final int SECTION_ERROR = 2;
43
44     /**
45      * Status code indicating that issue was found loading the tab extension
46      * configuration element.
47      */

48     public static final int TAB_ERROR = 3;
49
50     /**
51      * Status code indicating that issue was found loading the contributor
52      * extension configuration element.
53      */

54     public static final int CONTRIBUTOR_ERROR = 4;
55 }
56
Popular Tags