01: /* ****************************************************************************
02: * ASTFormalParamterList.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2007 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09:
10: package org.openlaszlo.sc.parser;
11:
12: public class ASTFormalParameterList extends SimpleNode {
13: private ASTIdentifier.Type returnType = null;
14:
15: public ASTFormalParameterList(int id) {
16: super (id);
17: }
18:
19: public ASTFormalParameterList(Parser p, int id) {
20: super (p, id);
21: }
22:
23: public ASTIdentifier.Type getReturnType() {
24: return returnType;
25: }
26:
27: public void setReturnType(ASTIdentifier.Type type) {
28: this.returnType = type;
29: }
30:
31: }
|