Package org.qi4j.tools.model.descriptor

Examples of org.qi4j.tools.model.descriptor.ApplicationDetailDescriptor.layers()


    {
        // create the visitor to traverse the QI4J to find the module
        ApplicationDetailDescriptor visitor = ApplicationDetailDescriptorBuilder.createApplicationDetailDescriptor( model );

        // find all entities
        Iterable<LayerDetailDescriptor> layerDescIter = visitor.layers();
        for( LayerDetailDescriptor layerDesc : layerDescIter )
        {
            Iterable<ModuleDetailDescriptor> moduleDescIter = layerDesc.modules();
            for( ModuleDetailDescriptor moduleDesc : moduleDescIter )
            {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.