KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > grammar > wiki > impl > TitleIITokenHandler


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.grammar.wiki.impl;
6
7 /**
8  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Dec 19, 2004
10  * @version $Id$
11  */

12 public class TitleIITokenHandler extends TokenHandler {
13   
14   public Token handleToken(Token parent, Token token, ParsingContext context) {
15     token = context.nextToken(token) ;
16     context.out("<h2>") ;
17     while(token != null) {
18       if(token.type == Token.DEFAULT_TOKEN || token.group == Token.INLINE_TOKEN_GROUP) {
19         token = context.getTokenHandlerManager().handleToken(null, token, context) ;
20       } else {
21         break ;
22       }
23     }
24     context.out("</h2>") ;
25     return token ;
26   }
27   
28   public String JavaDoc[] getHandleableTokenType() {
29     return new String JavaDoc[]{Token.TITLE_1_1_TOKEN} ;
30   }
31 }
Popular Tags