import javax.swing.JFrame; import org.gvsig.raster.grid.filter.convolution.ConvolutionUI; /** * Clase para poder ver la ventana de las Tablas de color * * @version 17/04/2007 * @author BorSanZa - Borja Sánchez Zamorano (borja.sanchez@iver.es) */ public class TestUIConvolution { private JFrame frame = new JFrame(); public TestUIConvolution() { super(); initialize(); } public static void main(String[] args){ new TestUIConvolution(); } private void initialize() { ConvolutionUI ui = new ConvolutionUI(null); frame.setContentPane(ui); frame.setSize(new java.awt.Dimension(220, 190)); frame.setResizable(true); frame.setTitle("Convolution"); frame.setVisible(true); frame.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); } }