public class BusinessInfoList
extends java.lang.Object
implements java.io.Serializable
BusinessInfo
objects.Constructor and Description |
---|
BusinessInfoList()
Deprecated.
Constructs a new, empty BusinessInfoList.
|
BusinessInfoList(int initialSize)
Deprecated.
Constructs a new, empty BusinessInfoList, with the initial capacity specified.
|
Modifier and Type | Method and Description |
---|---|
void |
add(BusinessInfo businessInfo)
Deprecated.
Adds a
BusinessInfo to the BusinessInfoList. |
BusinessInfo |
get(int index)
Deprecated.
Returns the
BusinessInfo at the specified index. |
int |
size()
Deprecated.
Returns the number of
BusinessInfo objects in the BusinessInfoList. |
public BusinessInfoList()
public BusinessInfoList(int initialSize)
initialSize
- the initial capacity of the BusinessInfoList.public void add(BusinessInfo businessInfo)
BusinessInfo
to the BusinessInfoList.businessInfo
- the BusinessInfo to be added.public BusinessInfo get(int index)
BusinessInfo
at the specified index.index
- the index of the BusinessInfo to be retrieved.public int size()
BusinessInfo
objects in the BusinessInfoList.