MobileDevice.java 412 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.mobile.platform.impl.store;

import com.adobe.cq.mobile.platform.impl.store.ScreenDefinition;
import java.awt.Dimension;
import java.util.List;

public interface MobileDevice {
    public String getId();

    public String getTitle();

    public boolean isDimensionSupported(Dimension var1);

    public List<ScreenDefinition> getSupportedScreens();
}