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.declaration.modifier;
12:
13: /**
14: * Public.
15: * @author <TT>AutoDoc</TT>
16: */
17:
18: public class Public extends VisibilityModifier {
19:
20: /**
21: * Constructor for the transformation of COMPOST ASTs to KeY.
22: */
23: public Public() {
24: super ();
25: }
26:
27: /**
28: * Constructor for the transformation of COMPOST ASTs to KeY.
29: * @param children the children of this AST element as KeY classes.
30: * May contain: Comments
31: */
32: public Public(de.uka.ilkd.key.util.ExtList children) {
33: super (children);
34: }
35:
36: /**
37: * Get symbol.
38: * @return the string.
39: */
40: protected String getSymbol() {
41: return "public";
42: }
43: }
|