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

com.nflabs.zeppelin.zengine.ParamInfo Maven / Gradle / Ivy

package com.nflabs.zeppelin.zengine;

public class ParamInfo {
	String name;
	Object defaultValue;
	
	public ParamInfo(String name, Object defaultValue){
		this.name = name;
		this.defaultValue = defaultValue;
	}
	
	public String getName(){
		return name;
	}
	
	public Object getDefaultValue(){
		return defaultValue;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy