Package org.jnode.vm.classmgr

Examples of org.jnode.vm.classmgr.SelectorMap


    public VmSystemClassLoader(URL[] classesURL, BaseVmArchitecture arch,
                               ObjectResolver resolver) {
        this.classesURL = classesURL;
        this.classInfos = new TreeMap<String, ClassInfo>();
        this.parent = null;
        this.selectorMap = new SelectorMap();
        this.arch = arch;
        this.resolver = resolver;
        this.resourceLoaders = new BootableArrayList<ResourceLoader>();
        this.sharedStatics = new VmSharedStatics(arch, resolver);
        this.isolatedStatics = new VmIsolatedStatics(arch, resolver);
View Full Code Here

TOP

Related Classes of org.jnode.vm.classmgr.SelectorMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.