Package org.apache.excalibur.containerkit.verifier

Examples of org.apache.excalibur.containerkit.verifier.ComponentVerifier


     */
    private void verifyAvalonComponent( final String name, Class clazz, final Class[] interfaces )
    {
        try
        {
            final ComponentVerifier verifier = new ComponentVerifier();
            setupLogger( verifier );
            verifier.
                verifyComponent( name, clazz, interfaces );
        }
        catch( VerifyException ve )
        {
            //ignore as the above will print out
View Full Code Here


     */
    private void verifyAvalonComponent( final String name, Class clazz, final Class[] interfaces )
    {
        try
        {
            final ComponentVerifier verifier = new ComponentVerifier();
            setupLogger( verifier );
            verifier.
                verifyComponent( name, clazz, interfaces );
        }
        catch( VerifyException ve )
        {
            //ignore as the above will print out
View Full Code Here

TOP

Related Classes of org.apache.excalibur.containerkit.verifier.ComponentVerifier

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.