org.drools.lang.api.impl.AttributeDescrBuilderImpl Maven / Gradle / Ivy
package org.drools.lang.api.impl;
import org.drools.lang.api.AttributeDescrBuilder;
import org.drools.lang.api.DescrBuilder;
import org.drools.lang.descr.AttributeDescr;
import org.drools.lang.descr.AttributeDescr.Type;
public class AttributeDescrBuilderImpl> extends BaseDescrBuilderImpl
implements
AttributeDescrBuilder
{
public AttributeDescrBuilderImpl(P parent,
String name) {
super( parent,
new AttributeDescr( name ) );
}
public AttributeDescrBuilderImpl
value( String value ) {
descr.setValue( value );
return this;
}
public AttributeDescrBuilder
type( Type type ) {
descr.setType( type );
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy