01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: //
09: //
10:
11: package de.uka.ilkd.key.java.expression;
12:
13: import de.uka.ilkd.key.java.Expression;
14: import de.uka.ilkd.key.java.LoopInitializer;
15:
16: /**
17: * An ExpressionStatement is a statement that may appear as an expression.
18: * There are three subclasses: MethodReference, Assignment, and New.
19: * Strictly speaking, Java would allow any expression as a statement;
20: * however, this does not make much sense (except backward compatibility to
21: * awkward C code) and is even forbidden in dialects (such as Generic Java).
22: */
23:
24: public interface ExpressionStatement extends Expression,
25: LoopInitializer {
26: }
|