Device.java 443 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.commons.json.JSONObject
 */
package com.adobe.cq.screens.sessions;

import com.adobe.cq.screens.sessions.Display;
import org.apache.sling.commons.json.JSONObject;

public interface Device {
    public String getId();

    public Display getDisplay();

    public int getWidth();

    public int getHeight();

    public JSONObject toJSON();
}