All Downloads are FREE. Search and download functionalities are using the official Maven repository.

convex.gui.models.ComboModel Maven / Gradle / Ivy

The newest version!
package convex.gui.models;

import javax.swing.DefaultComboBoxModel;

import convex.core.util.Utils;

@SuppressWarnings("serial")
public class ComboModel extends DefaultComboBoxModel {

	public ComboModel() {
		super();
	}

	public void ensureContains(E target) {
		if (!contains(target)) addElement(target);		
	}
	
	public boolean contains(E target) {
		int n=getSize();
		for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy