homebeaver / SwingSet

try to complete SwingSet3 org.swinglabs.swingx jars 1.6.6 for java 8 and openjdk 17 (Temurin)
GNU Lesser General Public License v2.1
0 stars 0 forks source link

SwingSet3 ComboBoxDemo? #32

Closed homebeaver closed 9 months ago

homebeaver commented 1 year ago

Was soll dieses Demo zeigen?

Die Controller CBn haben nix besonders.

homebeaver commented 9 months ago

Offenbar sind tatsächlich die vier Controller ComboBoxen als Demo gemeint. Dann sollten sie in das DemoFrame verschoben werden. Was ist das Besondere daran? Worin unterscheidet es sich vom tutorial?

TODO - Die Demos aus dem swing tutorial in SwingSet-Demo aufnehmen.

Das vierte Beispiel "Shows how to use a combo box as a table cell editor" ist nicht notwendig, da mit swingset.TableDemo ein geeignetes Beispiel existiert:

        // Create a combo box to show that you can use one in a table.
        JComboBox<NamedColor> comboBox = new JComboBox<NamedColor>();
        comboBox.addItem(aqua);
        comboBox.addItem(beige);
        comboBox.addItem(black);
...
    class NamedColor extends Color {
        String name;
        public NamedColor(Color color, String name) {
            super(color.getRGB());
            this.name = name;
        }
...