blob: c57cee9c8bbe8d18c2b6037d41cad9a6570ebad7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.parser;
import org.eclipse.jdt.internal.compiler.CompilationResult;
import org.eclipse.jdt.internal.compiler.ast.ConstructorDeclaration;
public class SourceConstructorDeclaration extends ConstructorDeclaration {
public int selectorSourceEnd;
public SourceConstructorDeclaration(CompilationResult compilationResult){
super(compilationResult);
}
}