
com.lambda.Debugger.Locals3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LewisOmniscientDebugger Show documentation
Show all versions of LewisOmniscientDebugger Show documentation
A command line utility for accesing the bowler framework.
The newest version!
/* Locals3.java
Copyright 2003, Bil Lewis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.lambda.Debugger;
// Locals/Locals.java
public class Locals3 extends Locals {
private int time0=-1;
private Object value0;
private int time1=-1;
private Object value1;
private int time2=-1;
private Object value2;
public int getNLocals() {
return tl.getArgCount()+3;
}
public void setValue(int varIndex, int time, Object value) {
switch (varIndex) {
case 0: value0 = value; time0 = time; return;
case 1: value1 = value; time1 = time; return;
case 2: value2 = value; time2 = time; return;
default: throw new DebuggerException("getHL IMPOSSIBLE");
}
}
void putHL(int i, HistoryList hl) {
switch (i) {
case 0: value0 = hl; return;
case 1: value1 = hl; return;
case 2: value2 = hl; return;
default: throw new DebuggerException("getHL IMPOSSIBLE");
}
}
public Object getObject(int i) {
switch (i) {
case 0: return value0;
case 1: return value1;
case 2: return value2;
default: throw new DebuggerException("getHL IMPOSSIBLE");
}
}
public int getTime(int i) {
switch (i) {
case 0: return time0;
case 1: return time1;
case 2: return time2;
default: throw new DebuggerException("getHL IMPOSSIBLE");
}
}
public void setTime(int varIndex, int time) {
switch (varIndex) {
case 0: time0 = time; return;
case 1: time1 = time; return;
case 2: time2 = time; return;
default: throw new DebuggerException("getHL IMPOSSIBLE");
}
}
// Constructors
protected Locals3(int time, TraceLine tl, String methodID) {
super(time, tl, methodID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy