Package net.xeoh.plugins.base.impl.registry.PluggableClassMetaInformation

Examples of net.xeoh.plugins.base.impl.registry.PluggableClassMetaInformation.Dependency


            // Don't recognize optional fields as dependencies.
            if (ipannotation.isOptional()) continue;

            // Obtain capabilities                        

            final Dependency d = new Dependency();
            d.capabilites = ipannotation.requiredCapabilities();
            d.pluginClass = (Class<? extends Plugin>) field.getType();
            d.isOptional = ipannotation.isOptional();

            rval.add(d);
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.base.impl.registry.PluggableClassMetaInformation.Dependency

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.