Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/common/metadata/query/internal/taglib/ITaglibDomainPredicateMatcherFactory.java')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/common/metadata/query/internal/taglib/ITaglibDomainPredicateMatcherFactory.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/common/metadata/query/internal/taglib/ITaglibDomainPredicateMatcherFactory.java b/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/common/metadata/query/internal/taglib/ITaglibDomainPredicateMatcherFactory.java
deleted file mode 100644
index c1868656e..000000000
--- a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/common/metadata/query/internal/taglib/ITaglibDomainPredicateMatcherFactory.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 Oracle Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are 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:
- * Oracle Corporation - initial API and implementation and/or initial documentation
- *******************************************************************************/
-
-package org.eclipse.jst.jsf.common.metadata.query.internal.taglib;
-
-import org.eclipse.jst.jsf.common.metadata.Trait;
-import org.eclipse.jst.jsf.common.metadata.query.internal.IPredicateMatcher;
-import org.eclipse.jst.jsf.common.metadata.query.internal.IPredicateMatcherFactory;
-
-
-/**
- * Interface for creating {@link IPredicateMatcher}s for the tag library domain.
- * <p>
- * @noextend
- */
-public interface ITaglibDomainPredicateMatcherFactory extends IPredicateMatcherFactory {
-
- /**
- * Returns a matcher that will match a tag library specification
- * @param uri - may not be null
- * @return {@link ITaglibDomainEntityPredicateMatcher}
- */
- public ITaglibDomainEntityPredicateMatcher createTagLibraryModelMatcher(final String uri);
- /**
- * Returns a matcher that will match a tag specification
- * @param uri - may not be null
- * @param tagName - may not be null
- * @return {@link ITaglibDomainEntityPredicateMatcher}
- */
- public ITaglibDomainEntityPredicateMatcher createTagEntityMatcher(final String uri, final String tagName);
-
- /**
- * Returns a matcher that will match a tag attribute specification
- * @param uri - may not be null
- * @param tagName - may not be null
- * @param tagAttributeName - may not be null
- * @return {@link ITaglibDomainEntityPredicateMatcher}
- */
- public ITaglibDomainEntityPredicateMatcher createTagAttributeEntityMatcher(final String uri, final String tagName, final String tagAttributeName) ;
-
- /**
- * Returns a matcher that will match the trait id
- * @param traitId - may not be null
- * @return {@link IPredicateMatcher} for {@link Trait}
- */
- public IPredicateMatcher<Trait> createTraitMatcher(final String traitId);
-}

Back to the top