Author: scabanovich
Date: 2010-09-28 07:41:02 -0400 (Tue, 28 Sep 2010)
New Revision: 25254
Removed:
trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/preferences/StrutsPagesPreferencesPage.java
Modified:
trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.properties
trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.xml
Log:
JBIDE-6256
https://jira.jboss.org/browse/JBIDE-6256
Modified: trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.properties
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.properties 2010-09-28 11:39:19
UTC (rev 25253)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.properties 2010-09-28 11:41:02
UTC (rev 25254)
@@ -37,7 +37,6 @@
PreferencePage_Struts=Struts
PreferencePage_StrutsSupport=Struts Support
PreferencePage_StrutsEnvironment=Struts Environment
-PreferencePage_StrutsPages=Struts Pages
PreferencePage_Project=Project
PreferencePage_Automation=Automation
PreferencePage_ResourceInsets=Resource Insets
Modified: trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.xml 2010-09-28 11:39:19 UTC (rev
25253)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/plugin.xml 2010-09-28 11:41:02 UTC (rev
25254)
@@ -135,8 +135,6 @@
</page>
<page category="org.jboss.tools.common.xstudio"
class="org.jboss.tools.struts.ui.preferences.StrutsImplementationsPreferencesPage"
id="org.jboss.tools.struts.ui.environments"
name="%PreferencePage_StrutsEnvironment"/>
- <page category="org.jboss.tools.common.xstudio"
class="org.jboss.tools.struts.ui.preferences.StrutsPagesPreferencesPage"
id="org.jboss.tools.jsf.ui.jsfpages"
- name="%PreferencePage_StrutsPages"/>
<page category="org.jboss.tools.common.xstudio"
class="org.jboss.tools.struts.ui.preferences.ProjectPreferencesPage"
id="org.jboss.tools.common.xstudio.project"
name="%PreferencePage_Project">
</page>
Deleted:
trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/preferences/StrutsPagesPreferencesPage.java
===================================================================
---
trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/preferences/StrutsPagesPreferencesPage.java 2010-09-28
11:39:19 UTC (rev 25253)
+++
trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/preferences/StrutsPagesPreferencesPage.java 2010-09-28
11:41:02 UTC (rev 25254)
@@ -1,26 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.struts.ui.preferences;
-
-import org.jboss.tools.struts.StrutsUtils;
-import org.jboss.tools.jst.web.ui.internal.preferences.AbstractPagesPreferencesPage;
-import org.jboss.tools.jst.web.project.helpers.AbstractWebProjectTemplate;
-
-public class StrutsPagesPreferencesPage extends AbstractPagesPreferencesPage {
-
- protected AbstractWebProjectTemplate createHelper() {
- return StrutsUtils.getInstance();
- }
-
- protected boolean isSetDefaultAllowed() {
- return true;
- }
-}