blob: 82086b6155e30c58589d610009937981b9be456f [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
import org.eclipse.core.runtime.CoreException;
/**
* A simple instruction cannot contain other instructions
* so its size is always one.
*/
public abstract class SimpleInstruction extends Instruction {
/**
* Constructor for SimpleInstruction.
*/
protected SimpleInstruction() {
super();
}
public int getSize() {
return 1;
}
}