List of usage examples for com.liferay.portal.kernel.xml Document content
public List<Node> content();
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); }