All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.compiler.lang.api.impl.AnnotationDescrBuilderImpl Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package org.drools.compiler.lang.api.impl;

import org.drools.compiler.lang.api.DescrBuilder;
import org.drools.compiler.lang.descr.AnnotationDescr;
import org.drools.compiler.lang.api.AnnotationDescrBuilder;

public class AnnotationDescrBuilderImpl

> extends BaseDescrBuilderImpl implements AnnotationDescrBuilder

{ protected AnnotationDescrBuilderImpl(P parent, String name) { super( parent, new AnnotationDescr( name ) ); } public AnnotationDescrBuilder

value( String value ) { descr.setValue( value ); return this; } public AnnotationDescrBuilder

keyValue( String key, String value ) { descr.setKeyValue( key, value ); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy