|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectJSHOP2.StdLib
public class StdLib
This class bundles all the code calls that are implemented in the standard
library of JSHOP2 in one class. As opposed to user-defined code calls that
will be mapped at compile-time to an object of the corresponding class,
all the stnadard code calls are mapped (at compile time) to the
static
members of this class.
Field Summary | |
---|---|
static Div |
div
For code call of the form (call / ...) . |
static Equal |
equal
For code call of the form (call = ...) . |
static Less |
less
For code call of the form (call < ...) . |
static LessEq |
lessEq
For code call of the form (call <= ...) . |
static Member |
member
For code call of the form (call Member ...) . |
static Minus |
minus
For code call of the form (call - ...) . |
static More |
more
For code call of the form (call > ...) . |
static MoreEq |
moreEq
For code call of the form (call >= ...) . |
static Mult |
mult
For code call of the form (call * ...) . |
static NotEq |
notEq
For code call of the form (call != ...) . |
static Plus |
plus
For code call of the form (call + ...) . |
static Power |
power
For code call of the form (call ^ ...) . |
Constructor Summary | |
---|---|
StdLib()
|
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static Div div
(call / ...)
.
public static Equal equal
(call = ...)
.
public static Less less
(call < ...)
.
public static LessEq lessEq
(call <= ...)
.
public static Member member
(call Member ...)
.
public static Minus minus
(call - ...)
.
public static More more
(call > ...)
.
public static MoreEq moreEq
(call >= ...)
.
public static Mult mult
(call * ...)
.
public static NotEq notEq
(call != ...)
.
public static Plus plus
(call + ...)
.
public static Power power
(call ^ ...)
.
Constructor Detail |
---|
public StdLib()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |