com.liferay.portal.kernel.xml.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.kernel.xml;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* @author Brian Wing Shun Chan
*/
public interface Element extends Branch {
public void add(Attribute attribute);
public void add(CDATA cdata);
public void add(Entity entity);
public void add(Namespace namespace);
public void add(Text text);
public Element addAttribute(QName qName, String value);
public Element addAttribute(String name, String value);
public Element addCDATA(String cdata);
public Element addComment(String comment);
public Element addEntity(String name, String text);
public List additionalNamespaces();
public Element addNamespace(String prefix, String uri);
public Element addProcessingInstruction(
String target, Map data);
public Element addProcessingInstruction(String target, String data);
public Element addText(String text);
public void appendAttributes(Element element);
public Attribute attribute(int index);
public Attribute attribute(QName qName);
public Attribute attribute(String name);
public int attributeCount();
public Iterator attributeIterator();
public List attributes();
public String attributeValue(QName qName);
public String attributeValue(QName qName, String defaultValue);
public String attributeValue(String name);
public String attributeValue(String name, String defaultValue);
public Element createCopy();
public Element createCopy(QName qName);
public Element createCopy(String name);
public List declaredNamespaces();
public Element element(QName qName);
public Element element(String name);
public Iterator elementIterator();
public Iterator elementIterator(QName qName);
public Iterator elementIterator(String name);
public List elements();
public List elements(QName qName);
public List elements(String name);
public String elementText(QName qName);
public String elementText(String name);
public String elementTextTrim(QName qName);
public String elementTextTrim(String name);
@Override
public String formattedString() throws IOException;
@Override
public String formattedString(String indent) throws IOException;
@Override
public String formattedString(String indent, boolean expandEmptyElements)
throws IOException;
public Object getData();
public Namespace getNamespace();
public Namespace getNamespaceForPrefix(String prefix);
public Namespace getNamespaceForURI(String uri);
public String getNamespacePrefix();
public List getNamespacesForURI(String uri);
public String getNamespaceURI();
public QName getQName();
public QName getQName(String qualifiedName);
public String getQualifiedName();
@Override
public String getStringValue();
@Override
public String getText();
public String getTextTrim();
public Node getXPathResult(int index);
public boolean hasMixedContent();
public boolean isRootElement();
public boolean isTextOnly();
public boolean remove(Attribute attribute);
public boolean remove(CDATA cdata);
public boolean remove(Entity entity);
public boolean remove(Namespace namespace);
public boolean remove(Text text);
public void setAttributes(List attributes);
public void setData(Object data);
public void setQName(QName qName);
public void sortAttributes(boolean recursive);
public void sortElementsByAttribute(
String elementName, String attributeName);
public void sortElementsByChildElement(
String elementName, String childElementName);
}