Package org.drools.guvnor.server.converters.decisiontable.builders

Source Code of org.drools.guvnor.server.converters.decisiontable.builders.GuidedDecisionTableCalendarsBuilder

/*
* Copyright 2012 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.drools.guvnor.server.converters.decisiontable.builders;

import org.drools.decisiontable.parser.ActionType;
import org.drools.guvnor.client.rpc.ConversionResult;
import org.drools.ide.common.client.modeldriven.dt52.AttributeCol52;
import org.drools.ide.common.client.modeldriven.dt52.DTCellValue52;
import org.drools.ide.common.client.modeldriven.dt52.GuidedDecisionTable52;

/**
* Builder for Calendars Attribute columns
*/
public class GuidedDecisionTableCalendarsBuilder extends AbstractGuidedDecisionTableAttributeBuilder {

    public GuidedDecisionTableCalendarsBuilder(int row,
                                               int column,
                                               ConversionResult conversionResult) {
        super( row,
               column,
               ActionType.Code.CALENDARS,
               conversionResult );
    }

    public void populateDecisionTable(GuidedDecisionTable52 dtable) {
        AttributeCol52 column = new AttributeCol52();
        column.setAttribute( GuidedDecisionTable52.CALENDARS_ATTR );
        dtable.getAttributeCols().add( column );
        addColumnData( dtable,
                       column );
    }

    public void addCellValue(int row,
                             int column,
                             String value) {
        DTCellValue52 dcv = new DTCellValue52( value.trim() );
        this.values.add( dcv );
    }

}
TOP

Related Classes of org.drools.guvnor.server.converters.decisiontable.builders.GuidedDecisionTableCalendarsBuilder

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.