I need help to interpret my assignment instructions that says:
The user interface for this assignment must satisfy the following criteria:
- ...
- ...
- The user should be able to select the origin and destination of flights, and the display should update to show only flights that satisfy those criteria. The user must be able to describe enter the string value "any" for the origin, destination, or both, so as to implement a wildcard-like feature
Even though my assignment uses "Carrier" to give an example of the criteriaFind() method, I think that the first quoted statement is pretty clear and states clearly that I only need to allow gui users to filter by origin and destination. Anyone disagree?
The example os criteriaFind reads:
For example, the following argument string would select all records describing flights by the SpeedyAir carrier that originate in San Francisco:
"Carrier='SpeedyAir',Origin='SFO'"
JComboBox:
I am using editable JComboBoxes for accepting the origin and destination airports. Located at the to of my window there is a panel (using BoxLayout +X_AXIS) containing the two comboboxes and the search button in a row like this:
Origin: [jcombobox] Dest: [jcombobox] [search]
My problem is that the width of the comboboxes are far larger than necessary (the itens have a maximum of 3 chars) and they are not resizing properly when the window is resizing. I am reluctant to use a JComboBox.setPreferredSize() or some other thing that might involve calculating pixel size of stuff.
Has anyone been through this yet? Any suggestions?
Thanks in advance
[ July 09, 2003: Message edited by: Marcos Motta ]
[ July 09, 2003: Message edited by: Marcos Motta ]