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

jidefx.utils.converter.ConverterContextSupport Maven / Gradle / Ivy

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