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