Package ptolemy.actor.gt.ingredients.criteria

Examples of ptolemy.actor.gt.ingredients.criteria.ChoiceCriterionElement


                } else {
                    background = _NON_REGULAR_EXPRESSION_BACKGROUND;
                }

                if (element instanceof ChoiceCriterionElement) {
                    ChoiceCriterionElement choiceElement = (ChoiceCriterionElement) element;
                    ColorizedComboBox comboBox = new ColorizedComboBox(
                            background);
                    comboBox.setEditable(choiceElement.isEditable());
                    for (Object choice : choiceElement.getChoices()) {
                        comboBox.addItem(choice);
                    }
                    component = comboBox;
                } else {
                    component = new ColorizedTextField(background);
View Full Code Here

TOP

Related Classes of ptolemy.actor.gt.ingredients.criteria.ChoiceCriterionElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.