![JAR search and dependency download from the Maven repository](/logo.png)
com.lionbridge.content.sdk.utilities.XmlUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk.utilities;
public class XmlUtils {
public static StringBuilder appendXmlTag(StringBuilder builder, String tagName, String value) {
return builder.append("<")
.append(tagName)
.append(">")
.append(value)
.append("")
.append(tagName)
.append(">");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy