Package org.openquark.cal.metadata

Examples of org.openquark.cal.metadata.MetadataJarStore


            }
           
            this.jarFileManager = jarFileManager;
            resourceManagerRegistry = new ResourceManagerRegistry();
            resourceManagerRegistry.registerResourceManager(new CALSourceManager(new CALSourceJarStore(jarFileManager)));
            resourceManagerRegistry.registerResourceManager(new MetadataManager(new MetadataJarStore(jarFileManager)));
            resourceManagerRegistry.registerResourceManager(new GemDesignManager(new GemDesignJarStore(jarFileManager)));
            resourceManagerRegistry.registerResourceManager(new WorkspaceDeclarationManager(new WorkspaceDeclarationJarStore(jarFileManager)));
            resourceManagerRegistry.registerResourceManager(new UserResourceManager(new UserResourceJarStore(jarFileManager)));
        }
View Full Code Here


    /**
     * Constructs a JarVault with the given jar file manager.
     * @param jarFileManager the jar file manager that encapsulates the underlying jar file.
     */
    public JarVault(JarFileManager jarFileManager) {
        super(new CALSourceJarStore(jarFileManager), new MetadataJarStore(jarFileManager),
            new GemDesignJarStore(jarFileManager), new WorkspaceDeclarationJarStore(jarFileManager),
            new EmptyResourceStore.Car(WorkspaceResource.CAR_RESOURCE_TYPE), // Cars are not supported in a JarVault
            new UserResourceJarStore(jarFileManager));
        this.jarFileManager = jarFileManager;
    }
View Full Code Here

TOP

Related Classes of org.openquark.cal.metadata.MetadataJarStore

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.