1 19 20 package org.netbeans.modules.web.core.syntax.deprecated; 21 22 import org.netbeans.editor.TokenContext; 23 import org.netbeans.editor.TokenContextPath; 24 import org.netbeans.editor.ext.java.JavaLayerTokenContext; 25 26 32 33 public class JspJavaLayerTokenContext extends TokenContext { 34 35 private JspJavaLayerTokenContext() { 36 super("jsp-", new TokenContext[] { JavaLayerTokenContext.context } ); } 38 39 public static final JspJavaLayerTokenContext context = new JspJavaLayerTokenContext(); 40 41 public static final TokenContextPath contextPath = context.getContextPath(); 42 43 } 44 45 | Popular Tags |