com.twilio.twiml.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.twiml;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
public class Text extends TwiML {
private final String text;
protected Text(final String text) {
super(null, null);
this.text = text;
}
@Override
protected Node buildXmlElement(final Document parentDoc) {
return parentDoc.createTextNode(this.text);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy