blob: 3285d2eacd5d9b2d7cadac09f03d137a81015c29 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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.corext.refactoring;
import org.eclipse.jdt.core.ICompilationUnit;
public class StubTypeContext {
private String fBeforeString;
private String fAfterString;
private final ICompilationUnit fCuHandle;
public StubTypeContext(ICompilationUnit cuHandle, String beforeString, String afterString) {
fCuHandle= cuHandle;
fBeforeString= beforeString;
fAfterString= afterString;
}
public ICompilationUnit getCuHandle() {
return fCuHandle;
}
public String getBeforeString() {
return fBeforeString;
}
public String getAfterString() {
return fAfterString;
}
}