Emulator.java
938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.wcm.emulator;
public interface Emulator {
public static final String RESOURCE_TYPE = "wcm/emulator/components/base";
public static final String PN_CANROTATE = "canRotate";
public static final String PN_TOUCHSCROLLING = "touchScrolling";
public static final String PN_WIDTH = "width";
public static final String PN_HEIGHT = "height";
public static final String PN_PIXELRATIO = "device-pixel-ratio";
public static final String NN_EMULATORCONFIG = "cq:emulatorConfig";
public String getContentCssPath();
public void setContentCssPath(String var1);
public String getDescription();
public String getName();
public String getPath();
public String getTitle();
public boolean canRotate();
public boolean hasTouchScrolling();
public int getWidth();
public int getHeight();
public double getPixelRatio();
}