org.apache.bcel.verifier.statics
Class IntList
java.lang.Object
org.apache.bcel.verifier.statics.IntList
public class IntList
extends java.lang.Object
A small utility class representing a set of basic int values.
$Id: IntList.java 386056 2006-03-15 11:31:56Z tcurdt $private List | theList - The int are stored as Integer objects here.
|
IntList() - This constructor creates an empty list.
|
(package private) void | add(int i) - Adds an element to the list.
|
(package private) boolean | contains(int i) - Checks if the specified int is already in the list.
|
theList
private List theList
The int are stored as Integer objects here.
IntList
(package private) IntList()
This constructor creates an empty list.
add
(package private) void add(int i)
Adds an element to the list.
contains
(package private) boolean contains(int i)
Checks if the specified int is already in the list.