Package org.auraframework.util.sampleServices

Examples of org.auraframework.util.sampleServices.SimpleServiceImpl


    /**
     * Negative test cases
     */
    // Missing @Impl annotation
    public static SimpleService impl12() {
        return new SimpleServiceImpl();
    }
View Full Code Here


    }

    // Non static method
    @Impl
    public SimpleService impl13() {
        return new SimpleServiceImpl();
    }
View Full Code Here

    }

    // Non public access specified
    @Impl
    protected static SimpleService impl14() {
        return new SimpleServiceImpl();
    }
View Full Code Here

    }

    // Function accepting argument
    @Impl
    protected static SimpleService impl15(String s) {
        return new SimpleServiceImpl();
    }
View Full Code Here

    }

    // With missing @Impl annotation
    @PrimaryImpl
    public static SimpleService impl16a() {
        return new SimpleServiceImpl();
    }
View Full Code Here

TOP

Related Classes of org.auraframework.util.sampleServices.SimpleServiceImpl

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.