001package com.plivo.api.xml;
002
003import javax.xml.bind.annotation.XmlAttribute;
004import javax.xml.bind.annotation.XmlRootElement;
005import javax.xml.bind.annotation.XmlValue;
006
007@XmlRootElement(name = "break")
008public class Break extends PlivoXml implements EmphasisNestable,
009                                               LangNestable,
010                                               PNestable,
011                                               ProsodyNestable,
012                                               SNestable,
013                                               SpeakNestable,
014                                               WNestable {
015
016  @XmlAttribute
017  private String strength;
018
019  @XmlAttribute
020  private String time;
021
022  public Break() {
023  }
024
025  public Break(String strength, String time) {
026    this.strength = strength;
027    this.time = time;
028  }
029
030  public String getStrength() {
031    return this.strength;
032  }
033
034  public String getTime() {
035    return this.time;
036  }
037}