[jbosstools-commits] JBoss Tools SVN: r17759 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Sep 25 12:10:33 EDT 2009


Author: scabanovich
Date: 2009-09-25 12:10:32 -0400 (Fri, 25 Sep 2009)
New Revision: 17759

Removed:
   trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/ITaglibMapping.java
   trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProject.java
   trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProjectFactory.java
   trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/WebProjectFactory.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4950


Deleted: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/ITaglibMapping.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/ITaglibMapping.java	2009-09-25 16:09:46 UTC (rev 17758)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/ITaglibMapping.java	2009-09-25 16:10:32 UTC (rev 17759)
@@ -1,21 +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.jst.web.tld;
-
-import org.jboss.tools.common.model.XModelObject;
-
-public interface ITaglibMapping {
-	public XModelObject getTaglibObject(String uri);
-	public void invalidate();
-	public String getTaglibPath(String uri);
-	public String resolveURI(String uri);
-	
-}

Deleted: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProject.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProject.java	2009-09-25 16:09:46 UTC (rev 17758)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProject.java	2009-09-25 16:10:32 UTC (rev 17759)
@@ -1,19 +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.jst.web.tld;
-
-import org.jboss.tools.common.model.XModelObject;
-
-public interface IWebProject {
-	public ITaglibMapping getTaglibMapping();
-	public String getWebRootLocation();
-	public String getPathInWebRoot(XModelObject o);
-}

Deleted: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProjectFactory.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProjectFactory.java	2009-09-25 16:09:46 UTC (rev 17758)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/IWebProjectFactory.java	2009-09-25 16:10:32 UTC (rev 17759)
@@ -1,17 +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.jst.web.tld;
-
-import org.jboss.tools.common.model.XModel;
-
-public interface IWebProjectFactory {
-	public IWebProject getWebProject(XModel model);
-}

Deleted: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/WebProjectFactory.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/WebProjectFactory.java	2009-09-25 16:09:46 UTC (rev 17758)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/jst/web/tld/WebProjectFactory.java	2009-09-25 16:10:32 UTC (rev 17759)
@@ -1,25 +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.jst.web.tld;
-
-import org.jboss.tools.common.model.plugin.ModelPlugin;
-import org.jboss.tools.common.model.util.ModelFeatureFactory;
-
-public class WebProjectFactory {
-	public static IWebProjectFactory instance = null;
-	static {
-		try {
-			instance = (IWebProjectFactory)ModelFeatureFactory.getInstance().createFeatureInstance("org.jboss.tools.jst.web.tld.WebProjectFactoryImpl"); //$NON-NLS-1$
-		} catch (ClassCastException e) {
-			ModelPlugin.getPluginLog().logError(e);
-		}
-	}
-}



More information about the jbosstools-commits mailing list