
fr.lteconsulting.hexa.server.qpath.AutoDTOs Maven / Gradle / Ivy
The newest version!
package fr.lteconsulting.hexa.server.qpath;
import java.util.HashMap;
@SuppressWarnings( { "rawtypes", "unchecked" } )
public class AutoDTOs
{
private QPath qpath;
private HashMap autoDTOs = new HashMap();
public AutoDTOs( QPath qpath )
{
this.qpath = qpath;
}
public AutoDTO get( Class clazz )
{
AutoDTO autoDTO = autoDTOs.get( clazz );
if( autoDTO == null )
{
autoDTO = new AutoDTO( clazz, qpath );
autoDTOs.put( clazz, autoDTO );
}
return autoDTO;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy