01: /*
02: * Copyright (C) Chaperon. All rights reserved.
03: * -------------------------------------------------------------------------
04: * This software is published under the terms of the Apache Software License
05: * version 1.1, a copy of which has been included with this distribution in
06: * the LICENSE file.
07: */
08:
09: package net.sourceforge.chaperon.build;
10:
11: import net.sourceforge.chaperon.model.symbol.Terminal;
12:
13: /**
14: * This symbol represents a symbol for the end of a file.
15: *
16: * @author <a href="mailto:stephan@apache.org">Stephan Michels </a>
17: * @version CVS $Id: EndOfFile.java,v 1.5 2003/12/09 19:55:52 benedikta Exp $
18: */
19: public class EndOfFile extends Terminal {
20: /**
21: * Creates a symbol for the end of a file.
22: */
23: public EndOfFile() {
24: super ("$");
25: }
26: }
|