KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > codegen > jet > JETParseEventListener


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2002-2004 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: JETParseEventListener.java,v 1.2 2005/06/08 06:15:56 nickb Exp $
16  */

17 package org.eclipse.emf.codegen.jet;
18
19
20 import java.util.Map JavaDoc;
21
22
23 /**
24  * The interface for the JET code generation backend.
25  */

26 public interface JETParseEventListener
27 {
28   void beginPageProcessing() throws JETException;
29
30   void handleDirective(String JavaDoc directive, JETMark start, JETMark stop, Map JavaDoc attributes) throws JETException;
31
32   void handleExpression(JETMark start, JETMark stop, Map JavaDoc attributes) throws JETException;
33
34   void handleCharData(char[] chars) throws JETException;
35
36   void endPageProcessing() throws JETException;
37
38   void handleScriptlet(JETMark start, JETMark stop, Map JavaDoc attributes) throws JETException;
39 }
40
Popular Tags