equal
deleted
inserted
replaced
53 protected JComboBox<String> createDelegate() { |
53 protected JComboBox<String> createDelegate() { |
54 return new JComboBoxDelegate(); |
54 return new JComboBoxDelegate(); |
55 } |
55 } |
56 |
56 |
57 @Override |
57 @Override |
58 public void initialize() { |
58 void initializeImpl() { |
59 super.initialize(); |
59 super.initializeImpl(); |
60 final Choice choice = getTarget(); |
60 final Choice choice = getTarget(); |
61 final JComboBox<String> combo = getDelegate(); |
61 final JComboBox<String> combo = getDelegate(); |
62 synchronized (getDelegateLock()) { |
62 synchronized (getDelegateLock()) { |
63 final int count = choice.getItemCount(); |
63 final int count = choice.getItemCount(); |
64 for (int i = 0; i < count; ++i) { |
64 for (int i = 0; i < count; ++i) { |