com.alee.laf.table.editors.WebGenericEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weblaf-ui Show documentation
Show all versions of weblaf-ui Show documentation
WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.laf.table.editors;
import com.alee.managers.style.StyleId;
import com.alee.utils.swing.WebDefaultCellEditor;
import javax.swing.*;
import java.awt.*;
import java.lang.reflect.Constructor;
/**
* @author Mikle Garin
*/
public class WebGenericEditor extends WebDefaultCellEditor
{
private final Class[] argTypes = new Class[]{ String.class };
private Constructor constructor;
private Object value;
public WebGenericEditor ()
{
super ( new GenericCellEditor () );
getComponent ().setName ( "Table.editor" );
}
@Override
public boolean stopCellEditing ()
{
final Component component = getComponent ();
try
{
value = constructor.newInstance ( super.getCellEditorValue () );
updateValidationState ( component, true );
return super.stopCellEditing ();
}
catch ( final Exception e )
{
updateValidationState ( component, false );
return false;
}
}
@Override
public Component getTableCellEditorComponent ( final JTable table, final Object value, final boolean isSelected, final int row,
final int column )
{
this.value = null;
try
{
Class type = table.getColumnClass ( column );
if ( type == Object.class )
{
type = String.class;
}
constructor = type.getConstructor ( argTypes );
}
catch ( final Exception e )
{
return null;
}
editorComponent.setStyleId ( StyleId.tableGenericEditor.at ( table ) );
final Component cellEditorComponent = super.getTableCellEditorComponent ( table, value, isSelected, row, column );
updateValidationState ( cellEditorComponent, true );
return cellEditorComponent;
}
private void updateValidationState ( final Component component, final boolean valid )
{
if ( component instanceof GenericCellEditor )
{
( ( GenericCellEditor ) component ).setInvalidValue ( !valid );
}
}
@Override
public Object getCellEditorValue ()
{
return value;
}
}