Constructor ArrayList()
Member of: java.util.ArrayList
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 private List members = Collections.synchronizedList(new ArrayList()),
2 whoIsPlaying = Collections.synchronizedList(new ArrayList());
3 private static final List A_KEYS = new ArrayList();
4 private static final List B_KEYS = new ArrayList();
5 private static final List C_KEYS = new ArrayList();
6 protected List roList = Collections.unmodifiableList(new ArrayList());
7 protected List list = new ArrayList();
8 protected List _allRecords = new ArrayList();
9 private List m_handles = new ArrayList();
10 private java.util.List path = new ArrayList();
11 private List nodes = new ArrayList();
12 List blocks = new ArrayList();
13 private List _batchCommands = new ArrayList();
14 protected List managedCommunities = Collections.synchronizedList(new ArrayList());;
15 private List formatters = new ArrayList();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.