Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/itemcreation/customizer/ICustomizationData.java')
-rw-r--r--jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/itemcreation/customizer/ICustomizationData.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/itemcreation/customizer/ICustomizationData.java b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/itemcreation/customizer/ICustomizationData.java
deleted file mode 100644
index 0a76ae027..000000000
--- a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/itemcreation/customizer/ICustomizationData.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package org.eclipse.jst.pagedesigner.itemcreation.customizer;
-
-import org.eclipse.core.runtime.IAdaptable;
-import org.eclipse.jst.jsf.common.dom.TagIdentifier;
-
-/**
- * Represents a read-only customization data object. Customization data for a
- * tag includes its identifier, attribute data, child tag information and parent
- * tag information.
- *
- * @see IWritableCustomizationData
- *
- * @author prusev
- * @author Debajit Adhikary
- *
- */
-public interface ICustomizationData extends IAdaptable
-{
- /**
- * Returns the TagIdentifier for the tag whose customization data this is
- *
- * @return the TagIdentifier
- */
- public TagIdentifier getTagIdentifier();
-
-
- /**
- * Returns the parent data associated with this customization data
- *
- * @return the attribute information for this customization data
- */
- public AttributeData getAttributeData();
-
-
- /**
- * Returns the children data associated with this customization data
- *
- * @return the ChildrenData for this customization data
- */
- public ChildrenData getChildrenData();
-
-
- /**
- * Returns the parent data associated with this customization data
- *
- * @return the parent data for this customization data
- */
- public ParentData getParentData();
-}

Back to the top