Author: snjeza
Date: 2008-09-23 13:02:56 -0400 (Tue, 23 Sep 2008)
New Revision: 10425
Added:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/preferences/MainPreferencePage.java
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.properties
trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.xml
Log:
JBIDE-2804, JBIDE-2803, JBIDE-2799
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.properties 2008-09-23
17:02:48 UTC (rev 10424)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.properties 2008-09-23
17:02:56 UTC (rev 10425)
@@ -28,3 +28,6 @@
action.reportproblem.label=Report Problem
action.visitsite.label=Red Hat Web Site
+
+MainPreferencePage=JBoss Tools
+org.jboss.tools.common.model.ui.views=JBoss Tools
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.xml 2008-09-23 17:02:48
UTC (rev 10424)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/plugin.xml 2008-09-23 17:02:56
UTC (rev 10425)
@@ -222,8 +222,13 @@
</actionSet>
</extension>
<extension point="org.eclipse.ui.preferencePages">
+ <page
+ name="%MainPreferencePage"
+
class="org.jboss.tools.common.model.ui.preferences.MainPreferencePage"
+ id="org.jboss.tools.common.model.ui.MainPreferencePage">
+ </page>
<page
- category="org.jboss.ide.eclipse.ui.MainPreferencePage"
+ category="org.jboss.tools.common.model.ui.MainPreferencePage"
class="org.jboss.tools.common.model.ui.preferences.CompanyPreferencesPage"
id="org.jboss.tools.common.model.ui"
name="Web">
@@ -243,7 +248,15 @@
name="Templates">
</page>
</extension>
-
+
+ <extension
+ point="org.eclipse.ui.views">
+ <category
+ name="%org.jboss.tools.common.model.ui.views"
+ id="org.jboss.tools.common.model.ui.views">
+ </category>
+ </extension>
+
<extension point="org.eclipse.ui.propertyPages">
<page
adaptable="true"
Added:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/preferences/MainPreferencePage.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/preferences/MainPreferencePage.java
(rev 0)
+++
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/preferences/MainPreferencePage.java 2008-09-23
17:02:56 UTC (rev 10425)
@@ -0,0 +1,78 @@
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.tools.common.model.ui.preferences;
+
+import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPreferencePage;
+
+/**
+ * Empty preference page for JBoss-IDE.
+ *
+ * @author Laurent Etiemble
+ * @version $Revision: 8012 $
+ */
+
+public class MainPreferencePage extends PreferencePage implements
+ IWorkbenchPreferencePage {
+ private Image image;
+
+ /** Default constructor */
+ public MainPreferencePage() {
+ this.setDescription("JBossTools preferences");
+ }
+
+ /** Description of the Method */
+ public void dispose() {
+ if (this.image != null) {
+ this.image.dispose();
+ }
+ super.dispose();
+ }
+
+ /**
+ * Initialization
+ *
+ * @param workbench
+ * Workbench
+ */
+ public void init(IWorkbench workbench) {
+ }
+
+ /**
+ * Create the content of the preference page
+ *
+ * @param parent
+ * Parent
+ * @return The content of the preference page
+ */
+ protected Control createContents(Composite parent) {
+ Composite composite = new Composite(parent, SWT.NONE);
+
+ noDefaultAndApplyButton();
+ return composite;
+ }
+}