/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.devtools.j2objc.ast; import java.util.List; import javax.lang.model.type.TypeMirror; /** * Collection of variable declaration fragments. Mainly used as the initializer * of a ForStatement. */ public class VariableDeclarationExpression extends Expression { private ChildLink<Type> type = ChildLink.create(Type.class, this); private ChildList<VariableDeclarationFragment> fragments = ChildList.create(VariableDeclarationFragment.class, this); public VariableDeclarationExpression() {} public VariableDeclarationExpression(VariableDeclarationExpression other) { super(other); type.copyFrom(other.getType()); fragments.copyFrom(other.getFragments()); } @Override public Kind getKind() { return Kind.VARIABLE_DECLARATION_EXPRESSION; } @Override public TypeMirror getTypeMirror() { Type typeNode = type.get(); return typeNode != null ? typeNode.getTypeMirror() : null; } public Type getType() { return type.get(); } public VariableDeclarationExpression setType(Type newType) { type.set(newType); return this; } public VariableDeclarationFragment getFragment(int index) { return fragments.get(index); } public List<VariableDeclarationFragment> getFragments() { return fragments; } public VariableDeclarationExpression addFragment(VariableDeclarationFragment fragment) { fragments.add(fragment); return this; } @Override protected void acceptInner(TreeVisitor visitor) { if (visitor.visit(this)) { type.accept(visitor); fragments.accept(visitor); } visitor.endVisit(this); } @Override public VariableDeclarationExpression copy() { return new VariableDeclarationExpression(this); } }