All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.twiml.Text Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
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