super("JComboBoxDemo");
String [] items = {"Anthony", "Lorraine", "Marie"};
JComboBox itemsComboBox = new JComboBox(items);
itemsComboBox.setEditable(true);
itemsComboBox.setMaximumRowCount(3);
this.getContentPane().add(itemsComboBox);
itemsComboBox.show();
applyOrientation(this, ComponentOrientation.RIGHT_TO_LEFT);
this.validate();
this.repaint();