Package com.volantis.shared.metadata.impl.inhibitor

Examples of com.volantis.shared.metadata.impl.inhibitor.InhibitorImpl


     * to populate the inhibitor
     *
     * @return
     */
    public InhibitorImpl getNextAsInhibitor() {
        InhibitorImpl result = null;
        if (hasNextEntry()) {
            // Note we do NOT incerement the index here as the initialize
            // Inhibitor might need access to its "self" element.
            EntryDAO entry = (EntryDAO) entries.get(retrieveIndex);
            if (!entry.isNull()) {
View Full Code Here


    // Javadoc inherited
    public Inhibitor convertToInhibitor(Bundle bundle) {
        BundleDAO bun = (BundleDAO) bundle;
        MetadataDAOVisitor visitor = new MetadataDAOVisitor(bun);
        InhibitorImpl inhibitorImpl = visitor.getNextAsInhibitor();
        return inhibitorImpl;
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.metadata.impl.inhibitor.InhibitorImpl

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.