Firing Item Events : TextField « Swing JFC « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing JFC » TextField 




Firing Item Events
     
import java.awt.ItemSelectable;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;

import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.event.EventListenerList;

public class Main {
  public static void main(String[] argvthrows Exception {
    MyComponent component = new MyComponent();
    JFrame f = new JFrame();

    f.add(component);
    f.setSize(300300);
    f.setVisible(true);

  }
}

class MyComponent extends JTextField implements ItemSelectable {
  protected EventListenerList listenerList = new EventListenerList();

  public Object[] getSelectedObjects() {
    return new String[] { "a""b""c" };
  }

  public void addItemListener(ItemListener l) {
    listenerList.add(ItemListener.class, l);
  }

  public void removeItemListener(ItemListener l) {
    listenerList.remove(ItemListener.class, l);
  }
  void fireItemEvent(Object item, boolean sel) {
    ItemEvent evt = new ItemEvent(this, ItemEvent.ITEM_STATE_CHANGED, item,
        sel ? ItemEvent.SELECTED : ItemEvent.DESELECTED);

    Object[] listeners = listenerList.getListenerList();

    for (int i = 0; i < listeners.length - 2; i += 2) {
      if (listeners[i== ItemListener.class) {
        ((ItemListenerlisteners[i + 1]).itemStateChanged(evt);
      }
    }
  }
}

   
    
    
    
    
  














Related examples in the same category
1.Make a Text Field two columns wide
2.Water mark text field
3.Auto complete TextField
4.Text fields and Java eventsText fields and Java events
5.JTextField Alignment SampleJTextField Alignment Sample
6.Create the textfieldCreate the textfield
7.FieldEdit - an Applet to validate data as it's being entered
8.Textfield only accepts numbersTextfield only accepts numbers
9.Overwritable TextFieldOverwritable TextField
10.Numeric TextFieldNumeric TextField
11.Passive TextField 1Passive TextField 1
12.Passive TextField 2Passive TextField 2
13.Text Accelerator ExampleText Accelerator Example
14.TextField Look Ahead ExampleTextField Look Ahead Example
15.Passive TextField 3Passive TextField 3
16.Non Wrapping(Wrap) TextPaneNon Wrapping(Wrap) TextPane
17.EditabilityExampleEditabilityExample
18.Bounded TextFieldBounded TextField
19.TextField ElementsTextField Elements
20.TextFieldViews 2TextFieldViews 2
21.TextField with ConstaintsTextField with Constaints
22.JTextField Sample 2JTextField Sample 2
23.JTextField Verifier SampleJTextField Verifier Sample
24.A simple label for field form panelA simple label for field form panel
25.A hack to make a JTextField really 2 columns wideA hack to make a JTextField really 2 columns wide
26.Limit JTextField input to a maximum length
27.Make sure that my JTextField has the focus when a JFrame is created
28.Make the ENTER key act like the TAB key
29.Setting up a textfield and modifying its horizontal alignment at runtimeSetting up a textfield and modifying its horizontal alignment at runtime
30.Aligning the Text in a JTextField Component
31.Based on JTextField content, enable or disable a JButton
32.Cut, paste, and copy in a JTextField under program control.
33.Add key listener event handler to JTextField
34.Right justified JTextfield content
35.Set the focus on a particular JTextField
36.Associate JLabel component with a JTextField
37.Right justified JTextField contents
38.Validate a value on the lostFocus event
39.Modify horizontal alignment of text field at runtime
40.Make sure that my Text field has the focus when a JFrame is created
41.extends JTextField to create integer JTextField
42.JTextField Max Length
43.Demo for three types of text component: JTextField, JPasswordField, JTextArea
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.