All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.valkyriercp.component.PanelWithValidationComponent Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.component;

import org.valkyriercp.form.HasValidationComponent;

import javax.swing.*;
import java.awt.*;

public class PanelWithValidationComponent extends JPanel implements HasValidationComponent
{
    public PanelWithValidationComponent()
    {
        super();
    }

    public PanelWithValidationComponent(LayoutManager layoutManager)
    {
        super(layoutManager);
    }

    public PanelWithValidationComponent(boolean isDoubleBuffered)
    {
        super(isDoubleBuffered);
    }

    public PanelWithValidationComponent(LayoutManager layoutManager, boolean isDoubleBuffered)
    {
        super(layoutManager, isDoubleBuffered);
    }

    /**
     * Geef de component waarop de validatiekleur en het icoontje terecht komen.
     */
    public JComponent getValidationComponent()
    {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy