
jidefx.utils.converter.ConverterContextSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jidefx-converters Show documentation
Show all versions of jidefx-converters Show documentation
JideFX Common Layer is a collection of several extend feature for JavaFX
The newest version!
/*
* @(#)ConverterContextSupport.java 5/19/2013
*
* Copyright 2002 - 2013 JIDE Software Inc. All rights reserved.
*/
package jidefx.utils.converter;
/**
* The interface indicates the class who extends it can support ConverterContext.
*
* @see ConverterContext
*/
public interface ConverterContextSupport {
/**
* Sets the converter context.
*
* @param context converter context
*/
void setConverterContext(ConverterContext context);
/**
* Gets the converter context.
*
* @return the converter context
*/
ConverterContext getConverterContext();
/**
* Gets the type of the value.
*
* @return the type of the value.
*/
Class> getType();
/**
* Sets the type of the value.
*
* @param clazz the type
*/
void setType(Class> clazz);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy