public java.lang.Object[ ] getStartClassInstances( )
Gets an array of the start classes that were constructed at server start time. The array length is zero if there are no start classes.
An array of start classes that were constructed at server start time, or an array of length zero if there are no start classes.
Following is an example that uses getStartClassInstances():
Object objs[] = sc.getStartClassInstances(); int i; for( i=0; i < objs.length; i += 1 ) { if( objs[i] instanceof MyClass ) { // Use class. } } |
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |