Method toArray(T a)
Return type: java.lang.Object<T>[]
Member of: java.util.List
[api documentation ] [ main menu]

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

1 profileNames.toArray(profiles);
2 public Object[] toArray(Object a[]) { return list.toArray ( a ); }
3 return page.toArray(a);
4 return extractList().toArray(aobj);
5 return back.toArray(a);
6 return (ISearchQuery[]) fQueries.toArray(result);
7 return nodes.toArray(a);
8 return (Attribute[])mAttributes.toArray(attrs);
9 profileLabels.toArray(profiles);
10 descs.toArray(strs);
11 return fEvents.toArray(events);
12 steps.toArray(s);
13 columns.toArray( columnArray );
14 return (FieldInfo[])mFields.toArray(fields);
15 _welcomes=(String[])list.toArray(_welcomes);
16 return (Attribute[]) this.attributes.toArray(elements);
17 ptgs = (Ptg[])lptgs.toArray(ptgs);
18 (CSSEngineListener[])listeners.toArray(LISTENER_ARRAY);
19 return (Configuration[])tmp.toArray(EmptySet);
20 resultSets.toArray(set);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.