blob: df4cc464760c115e3db85f5ccaed898c4780cf3e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.compiler.parser;
import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants;
public class SourceInitializer extends SourceField {
public SourceInitializer(
int declarationStart,
int modifiers) {
super(declarationStart, modifiers, null, null, -1, -1, null);
}
@Override
public void setDeclarationSourceEnd(int declarationSourceEnd) {
this.declarationEnd = declarationSourceEnd;
}
@Override
public String toString(int tab) {
if (this.modifiers == ClassFileConstants.AccStatic) {
return tabString(tab) + "static {}";
}
return tabString(tab) + "{}";
}
}