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

eu.mihosoft.vrl.v3d.parametrics.StringParameter Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package eu.mihosoft.vrl.v3d.parametrics;

import java.util.ArrayList;
import java.util.List;

public class StringParameter extends Parameter {

	private List options2;
	public StringParameter(String key, String defaultValue, ArrayList options) {
		setup(key, defaultValue, options);
		options2 = options;
	}
	public void setString(String s){
		setStrValue(s);
	}
	public String getString(){
		return (String)getStrValue();
	}
	public List getStringOptions(){
		return new ArrayList(options2);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy