Example usage for javax.swing JComponent subclass-usage

List of usage examples for javax.swing JComponent subclass-usage

Introduction

In this page you can find the example usage for javax.swing JComponent subclass-usage.

Usage

From source file DragPictureDemo.java

class Picture extends JComponent implements MouseListener, FocusListener, Accessible {
    Image image;

    public Picture(Image image) {

        this.image = image;

From source file SwingTypeTester9.java

class CharacterDisplayCanvas extends JComponent implements CharacterListener {
    protected FontMetrics fm;

    protected char[] tmpChar = new char[1];

    protected int fontHeight;

From source file org.jdal.swing.PageableTable.java

/**
 * Simple Box Component that hold a ColumnDescriptor and a checkbox
 * to show visibility state of a table column
 * 
 * @author Jose Luis Martin - (jlm@joseluismartin.info)
 */