Example usage for javax.swing JLabel subclass-usage

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

Introduction

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

Usage

From source file org.mbari.aved.ui.classifier.ClassModelListRenderer.java

/**
 * Configure to display the specified class image and class name
 * when the component's <code>paint</code> method is then called to
 * "render" the cell.  This is intended to be used in both JComboBox
 * and JList components.
 * @author dcline

From source file org.tinymediamanager.ui.components.ImageLabel.java

/**
 * The Class ImageLabel.
 * 
 * @author Manuel Laggner
 */
public class ImageLabel extends JLabel {

From source file GrayModel.java

class GrayEditor extends JLabel implements ChangeListener {
    public GrayEditor(JSpinner spinner) {
        setOpaque(true);

        // Get info from the model.
        GrayModel myModel = (GrayModel) (spinner.getModel());

From source file GrayModel.java

class GrayEditor extends JLabel implements ChangeListener {
    public GrayEditor(JSpinner spinner) {
        setOpaque(true);

        // Get info from the model.
        GrayModel myModel = (GrayModel) (spinner.getModel());

From source file ColorConvertDemo.java

class ColorPanel extends JLabel {
    Image displayImage;

    BufferedImage bi;

    Graphics2D big;

From source file FileSample.java

class LabelAccessory extends JLabel implements PropertyChangeListener {
    private static final int PREFERRED_WIDTH = 125;

    private static final int PREFERRED_HEIGHT = 100;

    public LabelAccessory(JFileChooser chooser) {

From source file de._13ducks.cor.graphics.GraphicsComponent.java

public class GraphicsComponent extends JLabel {
    // Diese Klasse reprsentiert den Tatschlichen GrafikINHALT von RogGraphics und RogMapEditor

    CoRImage defaultimage;
    CoRImage colModeImage;
    Color color;

From source file ConvolveApp.java

class CPanel extends JLabel {
    Image displayImage;

    BufferedImage biSrc;

    BufferedImage biDest; // Destination image is mandetory.

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);