EditLayout.java
376 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.wcm.api.components;
public enum EditLayout {
ROLLOVER("editrollover"),
EDITBAR("editbar"),
AUTO(""),
NONE("editnocontrol");
private final String xtype;
private EditLayout(String xtype) {
this.xtype = xtype;
}
public String getXtype() {
return this.xtype;
}
}