net.sf.javagimmicks.transform.Transforming Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.transform;
/**
* An interface for objects that carry a {@link Transformer} for internally
* transforming objects.
*
* @param
* the source object type of the contained {@link Transformer}
* @param
* the target object type of the contained {@link Transformer}
*/
public interface Transforming
{
/**
* Returns the internal {@link Transformer}
*
* @return the internal {@link Transformer}
*/
public Transformer getTransformer();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy