1 5 package org.exoplatform.services.grammar.wiki.impl; 6 7 12 public class DefaultTokenHandler extends TokenHandler { 13 14 public Token handleToken(Token parent, Token token, ParsingContext context) { 15 context.out(token) ; 16 return context.nextToken(token) ; 17 } 18 19 public String [] getHandleableTokenType() { return new String []{Token.DEFAULT_TOKEN} ;} 20 } | Popular Tags |