Example usage for com.liferay.portal.kernel.xml Document content

List of usage examples for com.liferay.portal.kernel.xml Document content

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.xml Document content.

Prototype

public List<Node> content();

Source Link

Usage

From source file:com.liferay.portlet.journal.action.GetArticleAction.java

License:Open Source License

protected void addStyleSheet(Document doc, String url, Map<String, String> arguments) {

    List<Node> content = doc.content();

    ProcessingInstruction processingInstruction = SAXReaderUtil.createProcessingInstruction("xml-stylesheet",
            arguments);/*w  ww  .  j  av a  2s  .  c o m*/

    content.add(0, processingInstruction);
}