Package ariba.util.test

Examples of ariba.util.test.TestPageLink


{
    static public String getAnnotationTypeList (Annotation annotation)
    {
        String typeList = null;
        if (TestPageLink.class.isAssignableFrom(annotation.annotationType())) {
            TestPageLink testLink = (TestPageLink)annotation;
            typeList = testLink.typeList();
        }
        else if (TestStager.class.isAssignableFrom(annotation.annotationType())) {
            TestStager testLink = (TestStager)annotation;
            typeList = testLink.typeList();
        }
        else if (TestDestager.class.isAssignableFrom(annotation.annotationType())) {
            TestDestager testLink = (TestDestager)annotation;
            typeList = testLink.typeList();
        }
        else if (TestValidator.class.isAssignableFrom(annotation.annotationType())) {
            TestValidator testValidator = (TestValidator)annotation;
            typeList = testValidator.typeList();
        }
View Full Code Here


    static public String getAnnotationSuperType (Annotation annotation)
    {
        String superType = null;
        if (TestPageLink.class.isAssignableFrom(annotation.annotationType())) {
            TestPageLink testLink = (TestPageLink)annotation;
            superType = testLink.superType();
        }
        else if (TestStager.class.isAssignableFrom(annotation.annotationType())) {
            TestStager testLink = (TestStager)annotation;
            superType = testLink.superType();
        }
        else if (TestDestager.class.isAssignableFrom(annotation.annotationType())) {
            TestDestager testLink = (TestDestager)annotation;
            superType = testLink.superType();
        }
        else if (TestValidator.class.isAssignableFrom(annotation.annotationType())) {
            TestValidator testValidator = (TestValidator)annotation;
            superType = testValidator.superType();
        }
View Full Code Here

    static public String getAnnotationName  (Annotation annotation)
    {
        String name = null;
        if (TestPageLink.class.isAssignableFrom(annotation.annotationType())) {
            TestPageLink testLink = (TestPageLink)annotation;
            name = testLink.name();
        }
        else if (TestStager.class.isAssignableFrom(annotation.annotationType())) {
            TestStager testLink = (TestStager)annotation;
            name = testLink.name();
        }
        else if (TestDestager.class.isAssignableFrom(annotation.annotationType())) {
            TestDestager testLink = (TestDestager)annotation;
            name = testLink.name();
        }
        return name;
    }
View Full Code Here

    static public String getDescription  (Annotation annotation)
    {
        String name = null;
        if (TestPageLink.class.isAssignableFrom(annotation.annotationType())) {
            TestPageLink testLink = (TestPageLink)annotation;
            name = testLink.description();
        }
        else if (TestStager.class.isAssignableFrom(annotation.annotationType())) {
            TestStager testLink = (TestStager)annotation;
            name = testLink.description();
        }
        else if (TestDestager.class.isAssignableFrom(annotation.annotationType())) {
            TestDestager testLink = (TestDestager)annotation;
            name = testLink.description();
        }
        return name;
    }
View Full Code Here

TOP

Related Classes of ariba.util.test.TestPageLink

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.