Pause.java
726 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.appmon.xml;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="")
@XmlRootElement(name="pause")
public class Pause
implements Serializable {
@XmlAttribute(required=1)
protected int value;
public int getValue() {
return this.value;
}
public void setValue(int value) {
this.value = value;
}
public boolean isSetValue() {
return true;
}
}