Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/contentmodel/annotation/internal/ICMAnnotationAdvisor.java')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/contentmodel/annotation/internal/ICMAnnotationAdvisor.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/contentmodel/annotation/internal/ICMAnnotationAdvisor.java b/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/contentmodel/annotation/internal/ICMAnnotationAdvisor.java
deleted file mode 100644
index ac3482861..000000000
--- a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/contentmodel/annotation/internal/ICMAnnotationAdvisor.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006 Oracle Corporation.
- * 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:
- * Gerry Kessler/Oracle - initial API and implementation
- *
- ********************************************************************************/
-
-package org.eclipse.jst.jsf.contentmodel.annotation.internal;
-
-import org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationSourceFileInfo;
-
-
-/**
- * Interface used to build internal data model of annotations.
- * Decouples the data model from the parser so that model can be changed in the future.
- *
- * Not intended to be implemented by others.
- *
- * @author Gerry Kessler - Oracle
- * @see org.eclipse.jst.jsf.contentmodel.annotation.internal.CMAnnotationAdvisor
- * @deprecated see common.metadata package
- */
-public interface ICMAnnotationAdvisor {
- /**
- * Returns annotationFile extension information
- * @return ICMAnnotationSourceFileInfo
- */
- public ICMAnnotationSourceFileInfo getFileInfo();
- /**
- * Set whether or not elements, attributes and property name querying is case sensitive or not.
- * @param val
- */
- public void setCaseSensitive(boolean val);
- /**
- * Method to be used by a ICMAnnotationFileParser to assign a property and a value
- * to an element in a particular content model defined by the ICMAnnotationSourceFileInfo.
- *
- * @param elementName
- * @param propertyName
- * @param propertyValue
- *
- * @see org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationFileParser
- * @see org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationSourceFileInfo
- */
- public void addElementAnnotation(String elementName, String propertyName, String propertyValue);
- /**
- * Method to be used by a ICMAnnotationFileParser to assign a property and a value
- * to an attribute of an element in a particular content model defined by the ICMAnnotationSourceFileInfo.
- *
- * @param elementName
- * @param attributeName
- * @param propertyName
- * @param propertyValue
- *
- * @see org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationFileParser
- * @see org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationSourceFileInfo
- */
- public void addAttributeAnnotation(String elementName, String attributeName, String propertyName, String propertyValue);
-}

Back to the top