Example usage for java.awt.event FocusEvent getSource

List of usage examples for java.awt.event FocusEvent getSource

Introduction

In this page you can find the example usage for java.awt.event FocusEvent getSource.

Prototype

public Object getSource() 

Source Link

Document

The object on which the Event initially occurred.

Usage

From source file:op.care.nursingprocess.DlgNursingProcess.java

private void txtStichwortFocusGained(FocusEvent e) {
    ((JTextComponent) e.getSource()).selectAll();
}

From source file:op.care.nursingprocess.DlgNursingProcess.java

private void txtSituationFocusGained(FocusEvent e) {
    ((JTextComponent) e.getSource()).selectAll();
}

From source file:op.care.nursingprocess.DlgNursingProcess.java

private void txtZieleFocusGained(FocusEvent e) {
    ((JTextComponent) e.getSource()).selectAll();
}

From source file:op.care.nursingprocess.PnlSchedule.java

private void txtFocusGained(FocusEvent evt) {//GEN-FIRST:event_txtFocusGained
    SYSTools.markAllTxt((JTextField) evt.getSource());
}

From source file:op.care.prescription.DlgOnDemand.java

private void txtMaxTimesFocusGained(FocusEvent e) {
    SYSTools.markAllTxt((JTextField) e.getSource());
}

From source file:op.care.prescription.DlgOnDemand.java

private void txtEDosisFocusGained(FocusEvent e) {
    SYSTools.markAllTxt((JTextField) e.getSource());
}

From source file:op.care.prescription.PnlScheduleDose.java

private void txtFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_txtFocusGained
    SYSTools.markAllTxt((JTextField) evt.getSource());
}

From source file:op.controlling.DlgQMSPlan.java

private void txtTitleFocusGained(FocusEvent e) {
    ((JTextComponent) e.getSource()).selectAll();
}

From source file:op.controlling.DlgQMSPlan.java

private void txtDescriptionFocusGained(FocusEvent e) {
    ((JTextComponent) e.getSource()).selectAll();
}

From source file:op.system.DlgLogin.java

private void txtPasswordFocusGained(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_txtPasswordFocusGained
    ((JTextField) evt.getSource()).selectAll();
}