blob: c1add70ab2565cb410fc0de6e8c226f63466ad17 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.lookup;
public class BinaryLocalVariableBinding extends LocalVariableBinding {
AnnotationBinding[] annotationBindings;
public BinaryLocalVariableBinding(char[] name, TypeBinding type, int modifiers, AnnotationBinding[] annotationBindings) {
super(name, type, modifiers, true);
this.annotationBindings = annotationBindings == null ? Binding.NO_ANNOTATIONS : annotationBindings;
}
public AnnotationBinding[] getAnnotations() {
return this.annotationBindings;
}
}