Constructor ArrayList(Collection c)
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 return new ArrayList(this);
2 ArrayList arraylist = new ArrayList(list);
3 ArrayList arraylist = new ArrayList(list);
4 List list = new ArrayList(collection);
5 return new ArrayList(collection);
6 List result = new ArrayList(map.keySet());
7 private final static List fCoreKeys= new ArrayList(DefaultCodeFormatterConstants.getDefaultSettings().keySet());
8 return new ArrayList(fFileInfoMap.values()).iterator();
9 return new ArrayList(openedTopComponents);
10 List result = new ArrayList(map.keySet());
11 back = Collections.unmodifiableList(new ArrayList(c));
12 final ArrayList result = new ArrayList( list1 );
13 this.m_List = new ArrayList(list);
14 return Collections.unmodifiableList( new ArrayList( CollectionUtils.select( getMethods( superclasses ), predicate ) ) );
15 this.list = new ArrayList(c);
16 return new ArrayList(coll);
17 List list = new ArrayList(Arrays.asList(_welcomes));
18 ArrayList list = new ArrayList(Arrays.asList(children));
19 return new ArrayList(embeddedPropertyNames.keySet());
20 new ArrayList(OrderedType.allTypesSorted(SonataPart.class)));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.