Package org.kie.workbench.common.services.refactoring.model.index

Examples of org.kie.workbench.common.services.refactoring.model.index.RuleAttribute


    private void visit( final AttributeCol52 o ) {
        final int iCol = model.getExpandedColumns().indexOf( o );
        for ( List<DTCellValue52> row : model.getData() ) {
            final String attributeValue = row.get( iCol ).getStringValue();
            if ( !( attributeValue == null || attributeValue.isEmpty() ) ) {
                builder.addGenerator( new RuleAttribute( new ValueRuleAttributeIndexTerm( o.getAttribute() ),
                                                         new ValueRuleAttributeValueIndexTerm( attributeValue ) ) );
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.kie.workbench.common.services.refactoring.model.index.RuleAttribute

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.