Created
March 13, 2017 20:09
-
-
Save ailabs-software/f31d64c46c8fb3562851d908dfbf836a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package client.model; | |
import java.util.List; | |
import jsinterop.annotations.JsType; | |
import jsinterop.annotations.JsOverlay; | |
import static jsinterop.annotations.JsPackage.GLOBAL; | |
@JsType(isNative=true, namespace=GLOBAL, name="Object") | |
public class PipelineItemLayoutModel | |
{ | |
public String templateName; | |
public int alignment; // 0 is left, 1 is right | |
public int openType; | |
public String button; | |
public String buttonTheme; | |
public String buttonColor; | |
public List<String> activeFields; | |
@JsOverlay | |
public final boolean equals(Object obj) | |
{ | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment