/** * This interface provides keyword data for an XAspectLanguage to * the XRuleScanner. * * @author JSeifried * @version 0.1.0 * @see XRuleScanner * @see jseifried.xaspecteditor.dj.XAspectLanguage */ package jseifried.xaspecteditor.highlight; interface IXAspectKeys { String[] cdwords = {"aspect", "declare"}; String[] swords = {"strategy", "from", "via", "bypassing", "to", "chosen", "selector", "class", "dictionary", "source", "target", "through", "to-stop"}; String[] nswords = {"node", "set", "nodes", "or", "regexp", "and"}; String[] punctuation = { "<", ">", ".", "(", ")", ".", "-", ">", ":", ";", "{", "}", "*", "!", ",", "|", "="}; }