Java Code Examples for java.awt.event.ActionEvent#MOUSE_EVENT_MASK

The following examples show how to use java.awt.event.ActionEvent#MOUSE_EVENT_MASK . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: QueryPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void queryComboBoxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_queryComboBoxActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        selectScriptQuery();
    }
}
 
Example 2
Source File: QueryPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void addQueryButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_addQueryButtonActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        addScriptQuery();
    }
}
 
Example 3
Source File: QueryPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void delQueryButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_delQueryButtonActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        deleteScriptQuery();
    }
}
 
Example 4
Source File: SimilarityPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void similarityTypeComboBoxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_similarityTypeComboBoxActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        updateSimilarityOptions();
    }
}
 
Example 5
Source File: SimilarityPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void similarityTokenizerComboBoxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_similarityTokenizerComboBoxActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        updateTokenizerOptions();
    }
}
 
Example 6
Source File: TMQLPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void tmqlComboBoxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_tmqlComboBoxActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        selectTmqlQuery();
    }
}
 
Example 7
Source File: TMQLPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void addTmqlButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_addTmqlButtonActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        addTmqlQuery();
    }
}
 
Example 8
Source File: TMQLPanel.java    From wandora with GNU General Public License v3.0 4 votes vote down vote up
private void delTmqlButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_delTmqlButtonActionPerformed
    if((evt.getModifiers() | ActionEvent.MOUSE_EVENT_MASK) != 0) {
        deleteTmqlQuery();
    }
}