Package org.drools.compiler.lang.api

Examples of org.drools.compiler.lang.api.AnnotationDescrBuilder.keyValue()


        public void setAnnotationsOn(AnnotatedDescrBuilder builder) {
            if (!descr.getAnnotations().isEmpty()) {
                for (AnnotationDescr annDescr : descr.getAnnotations()) {
                    AnnotationDescrBuilder annotation = builder.newAnnotation(annDescr.getName());
                    for (Map.Entry<String, Object> valueEntry : annDescr.getValueMap().entrySet()) {
                        annotation.keyValue(valueEntry.getKey(), valueEntry.getValue());
                    }
                }
                clear();
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.