104105106107108109110111
eventBus ); } // Make a new Cell for Numeric columns protected DecoratedGridCellValueAdaptor<BigDecimal> makeNumericCell() { return new DecoratedGridCellValueAdaptor<BigDecimal>( new PopupNumericEditCell( isReadOnly ), eventBus ); }
80818283848586
return new DecoratedGridCellValueAdaptor<Date>( new PopupDateEditCell( DateTimeFormat.getFormat( DATE_FORMAT ) ) ); } // Make a new Cell for Numeric columns protected DecoratedGridCellValueAdaptor<BigDecimal> makeNumericCell() { return new DecoratedGridCellValueAdaptor<BigDecimal>( new PopupNumericEditCell() ); }
182183184185186187188
} // Make a new Cell for Numeric columns private DecisionTableCellValueAdaptor< ? extends Comparable< ? >, DTColumnConfig> makeNumericCell() { return new DecisionTableCellValueAdaptor<Integer, DTColumnConfig>( new PopupNumericEditCell() ); }