View Javadoc

1   /*
2    * Copyright 2004-2008 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.uruma.rcp.configuration;
17  
18  /**
19   * エクステンション・ポイントの ID を定数として提供するインターフェースです。<br />
20   * 
21   * @author y-komori
22   */
23  public interface ExtensionPoints {
24      /**
25       * エクステンションポイント:{@value} を表す定数です。<br />
26       */
27      public static final String APPLICATIONS = "org.eclipse.core.runtime.applications";
28  
29      /**
30       * エクステンションポイント:{@value} を表す定数です。<br />
31       */
32      public static final String VIEWS = "org.eclipse.ui.views";
33  
34      /**
35       * エクステンションポイント:{@value} を表す定数です。<br />
36       */
37      public static final String PERSPECTIVES = "org.eclipse.ui.perspectives";
38  
39      /**
40       * エクステンションポイント:{@value} を表す定数です。<br />
41       */
42      public static final String ACTIONSETS = "org.eclipse.ui.actionSets";
43  
44      /**
45       * エクステンションポイント:{@value} を表す定数です。<br />
46       */
47      public static final String COMMANDS = "org.eclipse.ui.commands";
48  
49      /**
50       * エクステンションポイント:{@value} を表す定数です。<br />
51       */
52      public static final String HANDLERS = "org.eclipse.ui.handlers";
53  
54      /**
55       * エクステンションポイント:{@value} を表す定数です。<br />
56       */
57      public static final String BINDINGS = "org.eclipse.ui.bindings";
58  
59      /**
60       * エクステンションポイント:{@value} を表す定数です。<br />
61       */
62      public static final String MENUS = "org.eclipse.ui.menus";
63  
64      /**
65       * エクステンションポイント:{@value} を表す定数です。<br />
66       */
67      public static final String PREFERENCES = "org.eclipse.core.runtime.preferences";
68  
69      /**
70       * エクステンションポイント:{@value} を表す定数です。<br />
71       */
72      public static final String CONTEXTS = "org.eclipse.ui.contexts";
73  
74      /**
75       * エクステンションポイント:{@value} を表す定数です。<br />
76       */
77      public static final String DEFINITIONS = "org.eclipse.core.expressions.definitions";
78  
79  }