/******************************************************************************* * Copyright (c) 2005, 2015 Zend Technologies 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: * Zend Technologies - initial API and implementation *******************************************************************************/ package org.eclipse.php.refactoring.core; import org.eclipse.dltk.core.ISourceModule; import org.eclipse.dltk.core.ISourceRange; import org.eclipse.dltk.core.SourceRange; import org.eclipse.dltk.internal.corext.refactoring.base.ScriptStatusContext; public class SourceModuleSourceContext extends ScriptStatusContext { private ISourceModule fCUnit; private ISourceRange fSourceRange; public SourceModuleSourceContext(ISourceModule cunit, ISourceRange range) { fCUnit = cunit; fSourceRange = range; if (fSourceRange == null) fSourceRange = new SourceRange(0, 0); } public boolean isBinary() { return false; } public ISourceModule getSourceModule() { return fCUnit; } public ISourceRange getSourceRange() { return fSourceRange; } public String toString() { return getSourceRange() + " in " + super.toString(); //$NON-NLS-1$ } }