Package org.apache.oodt.cas.metadata.preconditions

Examples of org.apache.oodt.cas.metadata.preconditions.PreConditionComparator


        String[] preCondIds = this.getApplicationContext().getBeanNamesForType(
                PreConditionComparator.class);
        PrintStream ps = new PrintStream(this.getOutStream());
        ps.println("PreConditionComparators:");
        for (String preCondId : preCondIds) {
            PreConditionComparator preCond = (PreConditionComparator) this
                    .getApplicationContext().getBean(preCondId);
            ps.println("  PreCondComparator:");
            ps.println("    Id: " + preCondId);
            ps.println("    Description: " + preCond.getDescription());
            ps.println();
        }
        ps.close();
    }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.metadata.preconditions.PreConditionComparator

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.