/* Locals5.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 import java.util.*; public class Locals5 extends Locals { private int time0=-1; private Object value0; private int time1=-1; private Object value1; private int time2=-1; private Object value2; private int time3=-1; private Object value3; private int time4=-1; private Object value4; public int getNLocals() { return tl.getArgCount()+5; } 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; case 3: value3 = value; time3 = time; return; case 4: value4 = value; time4 = 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; case 3: value3 = hl; return; case 4: value4 = 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; case 3: return value3; case 4: return value4; 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; case 3: return time3; case 4: return time4; 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; case 3: time3 = time; return; case 4: time4 = time; return; default: throw new DebuggerException("getHL IMPOSSIBLE"); } } // Constructors protected Locals5(int time, TraceLine tl, String methodID) { super(time, tl, methodID); } }