Package com.cuubez.visualizer.annotation

Examples of com.cuubez.visualizer.annotation.Detail


    }


    private boolean scanDetail(SubResource subResource, Method method) {

        Detail detail = method.getAnnotation(Detail.class);

        if (detail != null) {

            subResource.setDetail(detail.value());
            return true;
        }

        return false;
    }
View Full Code Here


        return false;
    }

    private boolean scanDetail(Class<?> clazz, RootResource rootResource) {

        Detail detail = clazz.getAnnotation(Detail.class);

        if (detail != null) {
            rootResource.setDetail(detail.value());

            return true;
        }

        return false;
View Full Code Here

TOP

Related Classes of com.cuubez.visualizer.annotation.Detail

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.