blob: b625e54c12e8602027b9f590928141dbc1d5c0dd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.debug.eval.ast.instructions;
import org.eclipse.core.runtime.CoreException;
public class Jump extends SimpleInstruction {
protected int fOffset;
public void setOffset(int offset) {
fOffset = offset;
}
/*
* @see Instruction#execute()
*/
@Override
public void execute() throws CoreException {
jump(fOffset);
}
/*
* @see Object#toString()
*/
@Override
public String toString() {
return InstructionsEvaluationMessages.Jump_jump_1;
}
}