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

org.uqbar.ui.jface.base.converters.ArenaDoubleToStringConverter Maven / Gradle / Ivy

There is a newer version: 3.6.3
Show newest version
package org.uqbar.ui.jface.base.converters;

public class ArenaDoubleToStringConverter extends ArenaNumberToStringConverter {

	@Override
	public Object getFromType() {
		return Double.class;
	}

	@Override
	public double getConvertedValue(Object fromObject) {
		Double value = (Double) fromObject;
		return value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy