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

org.drools.lang.api.impl.AttributeDescrBuilderImpl Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
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