com.liferay.poshi.runner.elements.PoshiElementAttribute Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present 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.poshi.runner.elements;
import com.liferay.poshi.runner.script.PoshiScriptParserException;
import com.liferay.poshi.runner.util.Validator;
import org.dom4j.Attribute;
import org.dom4j.tree.DefaultAttribute;
/**
* @author Peter Yoo
*/
public class PoshiElementAttribute
extends DefaultAttribute
implements PoshiNode {
public PoshiElementAttribute(Attribute attribute) {
super(
attribute.getParent(), attribute.getName(), attribute.getValue(),
attribute.getNamespace());
}
public PoshiElementAttribute(
String name, String value, String poshiScript) {
super(name, value);
setPoshiScript(poshiScript);
}
@Override
public PoshiElementAttribute clone(Attribute attribute) {
return null;
}
@Override
public PoshiElementAttribute clone(String poshiScript)
throws PoshiScriptParserException {
return null;
}
@Override
public String getPoshiScript() {
return _poshiScript;
}
@Override
public void parsePoshiScript(String poshiScript)
throws PoshiScriptParserException {
}
@Override
public void setPoshiScript(String poshiScript) {
_poshiScript = poshiScript;
}
public String toPoshiScript() {
StringBuilder sb = new StringBuilder();
sb.append(getName());
sb.append(" = \"");
String value = getValue();
value = value.replaceAll("\"", """);
sb.append(value);
sb.append("\"");
return sb.toString();
}
@Override
public void validatePoshiScript() throws PoshiScriptParserException {
if (Validator.isNull(getPoshiScript())) {
return;
}
PoshiNode.super.validatePoshiScript();
}
private String _poshiScript;
}