org.apache.bcel.verifier.statics

Class IntList

public class IntList extends Object

A small utility class representing a set of basic int values.

Version: $Id: IntList.java 386056 2006-03-15 11:31:56Z tcurdt $

Author: Enver Haase

Field Summary
ListtheList
The int are stored as Integer objects here.
Constructor Summary
IntList()
This constructor creates an empty list.
Method Summary
voidadd(int i)
Adds an element to the list.
booleancontains(int i)
Checks if the specified int is already in the list.

Field Detail

theList

private List theList
The int are stored as Integer objects here.

Constructor Detail

IntList

IntList()
This constructor creates an empty list.

Method Detail

add

void add(int i)
Adds an element to the list.

contains

boolean contains(int i)
Checks if the specified int is already in the list.