Information

0
Story Points

Technologies

Decompiled Java File
package schemaorg_apache_xmlbeans.system.sC825F8EE886393DCCBD64B28FB0C782C;

import org.apache.xmlbeans.SchemaTypeSystem;

public class TypeSystemHolder {
   public static final SchemaTypeSystem typeSystem = loadTypeSystem();

   private static final SchemaTypeSystem loadTypeSystem() {
      try {
         return (SchemaTypeSystem)Class.forName("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl", true, TypeSystemHolder.class.getClassLoader()).getConstructor(new Class[]{Class.class}).newInstance(new Object[]{TypeSystemHolder.class});
      } catch (ClassNotFoundException var1) {
         throw new RuntimeException("Cannot load org.apache.xmlbeans.impl.SchemaTypeSystemImpl: make sure xbean.jar is on the classpath.", var1);
      } catch (Exception var2) {
         throw new RuntimeException("Could not instantiate SchemaTypeSystemImpl (" + var2.toString() + "): is the version of xbean.jar correct?", var2);
      }
   }
}
Page generated: Oct 19, 2017 2:34:35 PM