CSS.java
870 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.felix.scr.annotations.Component
* org.apache.felix.scr.annotations.Service
*/
package com.day.cq.wcm.mobile.api.device.capability;
import com.day.cq.wcm.mobile.api.device.capability.DeviceCapability;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
@Component(metatype=0)
@Service
public class CSS
implements DeviceCapability {
private static final String[] KEYS = new String[]{"xhtml_support_level"};
public String getName() {
return this.getClass().getName();
}
public String getTitle() {
return "CSS Support";
}
public String getDescription() {
return "Indicates whether the device supports CSS.";
}
public String[] getKeys() {
return KEYS;
}
}