Optional returns
[groovy.git] / src / main / org / codehaus / groovy / ast / stmt / SynchronizedStatement.java
blob006e64141bc37edf93b6cfeb9d03628d04901cca
1 /*
2 * Copyright 2003-2007 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.codehaus.groovy.ast.stmt;
18 import org.codehaus.groovy.ast.GroovyCodeVisitor;
19 import org.codehaus.groovy.ast.expr.Expression;
22 /**
23 * Represents a synchronized statement
25 * @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
26 * @version $Revision$
28 public class SynchronizedStatement extends Statement {
30 private Statement code;
31 private Expression expression;
33 public SynchronizedStatement(Expression expression, Statement code) {
34 this.expression = expression;
35 this.code = code;
38 public Statement getCode() {
39 return code;
42 public void setCode(Statement statement) {
43 code = statement;
46 public Expression getExpression() {
47 return expression;
50 public void visit(GroovyCodeVisitor visitor) {
51 visitor.visitSynchronizedStatement(this);
53 public void setExpression(Expression expression) {
54 this.expression = expression;