blob: f24f7815efbeefa2e90aa96ee90e39fd3ef7051b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 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.codeassist.complete;
import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
public class AssistNodeParentAnnotationArrayInitializer extends ASTNode {
public final TypeReference type;
public final char[] name;
public AssistNodeParentAnnotationArrayInitializer(TypeReference type, char[] name) {
this.type = type;
this.name = name;
}
public StringBuffer print(int indent, StringBuffer output) {
output.append("<AssistNodeParentAnnotationArrayInitializer:"); //$NON-NLS-1$
output.append('@');
this.type.printExpression(0, output);
output.append('(');
output.append(this.name);
output.append(')');
output.append('>');
return output;
}
}