1 19 20 package org.netbeans.modules.db.sql.editor; 21 22 import javax.swing.text.BadLocationException ; 23 import javax.swing.text.JTextComponent ; 24 import org.netbeans.editor.BaseDocument; 25 import org.netbeans.editor.TokenID; 26 import org.netbeans.editor.ext.ExtSyntaxSupport; 27 import org.openide.DialogDisplayer; 28 import org.openide.NotifyDescriptor; 29 30 34 public class SQLSyntaxSupport extends ExtSyntaxSupport { 35 36 public SQLSyntaxSupport(BaseDocument doc) { 37 super(doc); 38 } 39 40 43 public TokenID[] getCommentTokens() { 44 return new TokenID[] { 45 SQLTokenContext.BLOCK_COMMENT, 46 SQLTokenContext.LINE_COMMENT 47 }; 48 } 49 } 50 | Popular Tags |