ci = c;
c.vmClass = this;
if ( c.methods != null ){
// per-method, EVM-specific info.
methods = new EVMMethodInfo[ c.methods.length ];
for( int i = 0; i < methods.length; i++ ){
components.MethodInfo m = c.methods[i];
methods[i] = new EVMMethodInfo( m );
if (!hasStaticInitializer &&
m.isStaticMember() &&
m.name.string.equals(/*NOI18N*/"<clinit>")) {
hasStaticInitializer = true;
}
}
}