ExpectedWindow.java 828 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.appmon.xml;

import com.adobe.appmon.xml.Window;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="", propOrder={"window"})
@XmlRootElement(name="expectedWindow")
public class ExpectedWindow
implements Serializable {
    @XmlElement(required=1)
    protected Window window;

    public Window getWindow() {
        return this.window;
    }

    public void setWindow(Window value) {
        this.window = value;
    }

    public boolean isSetWindow() {
        return this.window != null;
    }
}