Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/xml/IXmlElement.java')
-rw-r--r--plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/xml/IXmlElement.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/xml/IXmlElement.java b/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/xml/IXmlElement.java
deleted file mode 100644
index f5981b00..00000000
--- a/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/xml/IXmlElement.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Innoopract Informationssysteme GmbH
- * 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:
- * Innoopract - initial API and implementation
- *******************************************************************************/
-package org.eclipse.epp.packaging.core.configuration.xml;
-
-/** An XML Element with sub elements and attributes. */
-public interface IXmlElement {
-
- /**
- * Returns all descendant elements of this element whose name equals the given
- * name.
- *
- * @param tagName name of the tag
- * @return element
- */
- public IXmlElement[] getElements( String tagName );
-
- /**
- * Returns the first descendant element of the given name or <code>null</code>,
- * if none exist.
- *
- * @param tagName name of the tag
- * @return the element or <code>null</code>
- */
- public IXmlElement getElement( String tagName );
-
- /**
- * Returns the value of the given attribute.
- *
- * @param attributeName name of the XML attribute
- * @return plain string value of the XML attribute
- */
- public String getAttributeValue( String attributeName );
-
- /**
- * Returns the text value of this element without any preprocessing.
- *
- * @return text of this XML element
- */
- public String getText();
-}

Back to the top