net.dongliu.apk.parser.struct.xml.XmlCData Maven / Gradle / Ivy
package net.dongliu.apk.parser.struct.xml;
import net.dongliu.apk.parser.struct.ResourceValue;
import net.dongliu.apk.parser.struct.resource.ResourceTable;
import java.util.Locale;
/**
* @author dongliu
*/
public class XmlCData {
public static final String CDATA_START = "";
// The raw CDATA character data.
private String data;
// The typed value of the character data if this is a CDATA node.
private ResourceValue typedData;
// the final value as string
private String value;
/**
* get value as string
*
* @return
*/
public String toStringValue(ResourceTable resourceTable, Locale locale) {
if (data != null) {
return CDATA_START + data + CDATA_END;
} else {
return CDATA_START + typedData.toStringValue(resourceTable, locale) + CDATA_END;
}
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public ResourceValue getTypedData() {
return typedData;
}
public void setTypedData(ResourceValue typedData) {
this.typedData = typedData;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public String toString() {
return "XmlCData{" +
"data='" + data + '\'' +
", typedData=" + typedData +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy