package jetbrains.mps.editor.contextActionsTool.pluginSolution.plugin; /*Generated by MPS */ public enum ViewType { LIST("List"), SYMBOLS("Symbols"); private String myText; ViewType(String text) { myText = text; } @Override public String toString() { return myText; } }