Example usage for javax.swing.event DocumentListener interface-usage

List of usage examples for javax.swing.event DocumentListener interface-usage

Introduction

In this page you can find the example usage for javax.swing.event DocumentListener interface-usage.

Usage

From source file com.ficeto.esp.EspExceptionDecoder.java

public class EspExceptionDecoder implements Tool, DocumentListener {
    Editor editor;
    JTextPane outputArea;
    String outputText;
    JTextArea inputArea;
    JFrame frame;

From source file org.orbisgis.sqlconsole.api.SQLElement.java

/**
 * SQL Document serialisation
 * @author Nicolas Fortin
 */
public class SQLElement extends AbstractEditableElement implements DocumentListener, DockingPanelLayout {
    private static final I18n I18N = I18nFactory.getI18n(SQLElement.class);

From source file org.openmicroscopy.shoola.util.ui.NumericalTextField.java

/**
 * A text field containing only numerical value.
 *
 * @author  Jean-Marie Burel     
 * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @author Donald MacDonald &nbsp;&nbsp;&nbsp;&nbsp;

From source file edu.ku.brc.af.ui.BrowseBtnPanel.java

/**
 * This is a JPanel that contains a JTextField and a Button that enables the user to browser for a file
 * and sets the the file and path into the text field.
 *
 * @code_status Beta
 *

From source file com.github.alexfalappa.nbspringboot.projects.initializr.InitializrProjectPanelVisual1.java

public class InitializrProjectPanelVisual1 extends JPanel implements DocumentListener, AsyncGUIJob {

    public static final String PROP_PROJECT_NAME = "projectName";
    private final DefaultComboBoxModel<NamedItem> dcbmLanguage = new DefaultComboBoxModel<>();
    private final DefaultComboBoxModel<NamedItem> dcbmJavaVersion = new DefaultComboBoxModel<>();
    private final DefaultComboBoxModel<NamedItem> dcbmPackaging = new DefaultComboBoxModel<>();

From source file TextAreaDemo.java

public class TextAreaDemo extends JFrame implements DocumentListener {

    private JLabel jLabel1;
    private JScrollPane jScrollPane1;
    private JTextArea textArea;

From source file edu.ku.brc.af.ui.forms.validation.DataChangeNotifier.java

/**
 * Implements several listener interfaces and listens for the various types of notifications
 * to figure out if the component has changed.
 *
 * @code_status Complete
 * 

From source file org.openmicroscopy.shoola.agents.metadata.editor.CommentsTaskPaneUI.java

/**
 * A {@link AnnotationTaskPaneUI} for displaying comments (
 * {@link TextualAnnotationData})
 * 
 * @author Dominik Lindner &nbsp;&nbsp;&nbsp;&nbsp; <a
 *         href="mailto:d.lindner@dundee.ac.uk">d.lindner@dundee.ac.uk</a>

From source file org.openmicroscopy.shoola.agents.metadata.editor.TextualAnnotationsUI.java

/** 
 * UI component displaying the textual annotations.
 *
 * @author  Jean-Marie Burel &nbsp;&nbsp;&nbsp;&nbsp;
 * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @author Donald MacDonald &nbsp;&nbsp;&nbsp;&nbsp;

From source file TextFieldDemo.java

public class TextFieldDemo extends JFrame implements DocumentListener {

    private JTextField entry;
    private JLabel jLabel1;
    private JScrollPane jScrollPane1;
    private JLabel status;