KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > chaperon > build > ShiftAction


1 /*
2  * Copyright (C) Chaperon. All rights reserved.
3  * -------------------------------------------------------------------------
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE file.
7  */

8
9 package net.sourceforge.chaperon.build;
10
11 import net.sourceforge.chaperon.model.symbol.Symbol;
12
13 /**
14  * @author <a HREF="mailto:stephan@apache.org">Stephan Michels</a>
15  * @version CVS $Id: ShiftAction.java,v 1.3 2003/12/09 19:55:53 benedikta Exp $
16  */

17 public class ShiftAction
18 {
19   public final Symbol symbol;
20   public final State state;
21
22   public ShiftAction(Symbol symbol, State state)
23   {
24     this.symbol = symbol;
25     this.state = state;
26   }
27 }
28
Popular Tags