Package com.cedarsoft.spring.rcp.table.renderer

Examples of com.cedarsoft.spring.rcp.table.renderer.EnumTableCellRenderer


   * Registers the renderes
   *
   * @param table the table the renderers should be registered at
   */
  protected void registerDefaultRenderers( @NotNull JTable table ) {
    table.setDefaultRenderer( Enum.class, new EnumTableCellRenderer() );
    table.setDefaultRenderer( BigDecimal.class, new PercentageTableCellRenderer() );

    table.setDefaultRenderer( LocalDate.class, new LocalDateTableCellRenderer() );
    table.setDefaultRenderer( LocalTime.class, new LocalTimeTableCellRenderer() );
    table.setDefaultRenderer( DateTime.class, new DateTimeTableCellRenderer( true ) );
View Full Code Here

TOP

Related Classes of com.cedarsoft.spring.rcp.table.renderer.EnumTableCellRenderer

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.