/* * Copyright 2014 Red Hat, Inc. and/or its affiliates. * * 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.kie.workbench.common.widgets.decoratedgrid.client.widget.cells; import java.math.BigInteger; import org.drools.workbench.models.datamodel.oracle.DataType; import org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle; import org.kie.workbench.common.widgets.client.widget.TextBoxFactory; import org.kie.workbench.common.widgets.decoratedgrid.client.widget.CellTableDropDownDataValueMapProvider; /** * A Popup drop-down Editor proxy that delegates operation to different implementations depending on whether * the cell should represent a list of values or single value. The need arose from incomplete dependent enumeration * definitions; e.g. Fact.field1=['A', 'B'] Fact.field2[field1=A]=['A1', 'A2']; where no dependent enumeration has * been defined for Fact.field2[field1=B]. In this scenario a TextBox for field2 should be shown when field1=B */ public class ProxyPopupNumericBigIntegerDropDownEditCell extends AbstractProxyPopupDropDownEditCell<BigInteger, BigInteger> { public ProxyPopupNumericBigIntegerDropDownEditCell( final String factType, final String factField, final AsyncPackageDataModelOracle dmo, final CellTableDropDownDataValueMapProvider dropDownManager, final boolean isReadOnly ) { super( factType, factField, dmo, dropDownManager, isReadOnly ); } @Override protected ProxyPopupDropDown<BigInteger> getSingleValueEditor() { return new AbstractProxyPopupDropDownTextBox<BigInteger>( TextBoxFactory.getTextBox( DataType.TYPE_NUMERIC_BIGINTEGER ), this ) { @Override public String convertToString( final BigInteger value ) { return ProxyPopupNumericBigIntegerDropDownEditCell.this.convertToString( value ); } @Override public BigInteger convertFromString( final String value ) { return ProxyPopupNumericBigIntegerDropDownEditCell.this.convertFromString( value ); } }; } @Override protected ProxyPopupDropDown<BigInteger> getMultipleValueEditor() { return new AbstractProxyPopupDropDownListBox<BigInteger>( this ) { @Override public String convertToString( final BigInteger value ) { return ProxyPopupNumericBigIntegerDropDownEditCell.this.convertToString( value ); } @Override public BigInteger convertFromString( final String value ) { return ProxyPopupNumericBigIntegerDropDownEditCell.this.convertFromString( value ); } }; } private String convertToString( final BigInteger value ) { return ( value == null ? null : value.toString() ); } private BigInteger convertFromString( final String value ) { BigInteger number = null; if ( value.length() > 0 ) { try { number = new BigInteger( value ); } catch ( NumberFormatException e ) { number = BigInteger.valueOf( 0 ); } } return number; } }