1 19 20 package org.netbeans.modules.web.core.syntax.deprecated; 21 22 import org.netbeans.editor.BaseTokenID; 23 import org.netbeans.editor.TokenContext; 24 import org.netbeans.editor.TokenContextPath; 25 26 34 35 public class ELLayerTokenContext extends TokenContext { 36 37 39 public static final int METHOD_ID = 1; 41 42 43 44 public static final BaseTokenID METHOD = new BaseTokenID("method", METHOD_ID); 46 47 public static final ELLayerTokenContext context = new ELLayerTokenContext(); 49 50 public static final TokenContextPath contextPath = context.getContextPath(); 51 52 53 54 private ELLayerTokenContext() { 55 super("jsp-el-layer-"); 56 57 try { 58 addDeclaredTokenIDs(); 59 } catch (Exception e) { 60 if (Boolean.getBoolean("netbeans.debug.exceptions")) { e.printStackTrace(); 62 } 63 } 64 65 } 66 67 } 68 69 | Popular Tags |