126127128129130131132133134135
{ return new EncapsulationFactoryBase(TAG_JAVA_CODEBASE.value) { public Identifiable readContents( InputStream in ) { String url = in.read_string() ; Identifiable comp = new JavaCodebaseComponentImpl( url ) ; return comp ; } } ; }
135136137138139140141
} public static JavaCodebaseComponent makeJavaCodebaseComponent( String codebase ) { return new JavaCodebaseComponentImpl( codebase ) ; }