Fix joystick-related desync
[jpcrr.git] / mnj / lua / Debug.java
blob3b447343c4c2323c9efa7b4084c06d0f448248e6
1 /* $Header: //info.ravenbrook.com/project/jili/version/1.1/code/mnj/lua/Debug.java#1 $
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
3 * All rights reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject
11 * to the following conditions:
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
20 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
21 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 package mnj.lua;
27 /**
28 * Equivalent to struct lua_Debug. This implementation is incomplete
29 * because it is not intended to form part of the public API. It has
30 * only been implemented to the extent necessary for internal use.
32 final class Debug
34 // private, no public accessors defined.
35 private int ici;
37 // public accessors may be defined for these.
38 private int currentline;
39 private int linedefined;
40 private String shortsrc;
42 /**
43 * @param ici index of CallInfo record in L.civ
45 Debug(int ici)
47 this.ici = ici;
50 /**
51 * Get ici, index of the {@link CallInfo} record.
53 int ici()
55 return ici;
58 /**
59 * Setter for event.
61 void setEvent(int event)
65 /**
66 * Sets the what field.
68 void setWhat(String what)
72 /**
73 * Sets the source, and the shortsrc.
75 void setSource(String source)
77 this.shortsrc = Lua.oChunkid(source);
80 /**
81 * Gets the current line. May become public.
83 int currentline()
85 return currentline;
88 /**
89 * Set currentline.
91 void setCurrentline(int currentline)
93 this.currentline = currentline;
96 /**
97 * Get linedefined.
99 int linedefined()
101 return linedefined;
105 * Set linedefined.
107 void setLinedefined(int linedefined)
109 this.linedefined = linedefined;
113 * Set lastlinedefined.
115 void setLastlinedefined(int lastlinedefined)
120 * Gets the "printable" version of source, for error messages.
121 * May become public.
123 String shortsrc()
125 return shortsrc;