KickJava   Java API By Example, From Geeks To Geeks.

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


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 import org.eclipse.ui.plugin.AbstractUIPlugin;
14
15 /**
16  * The common ui properties plug-in.
17  *
18  * @author Anthony Hunter
19  */

20 public class TabbedPropertyViewPlugin
21     extends AbstractUIPlugin {
22
23     private static TabbedPropertyViewPlugin plugin;
24
25     /**
26      * Constructor for TabbedPropertyViewPlugin.
27      */

28     public TabbedPropertyViewPlugin() {
29         super();
30         plugin = this;
31     }
32
33     /**
34      * Retrieve the plug-in class for this plug-in.
35      * @return the plug-in class for this plug-in.
36      */

37     public static TabbedPropertyViewPlugin getPlugin() {
38         return plugin;
39     }
40 }
41
Popular Tags