com.mindoo.domino.jna.IAdaptable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-jna Show documentation
Show all versions of domino-jna Show documentation
Java project to access the HCL Domino C API using Java Native Access (JNA)
package com.mindoo.domino.jna;
/**
* Interface to access internal object structures and get adapter classes
*
* @author Karsten Lehmann
*/
public interface IAdaptable {
/**
* Method to get an adapter for a class
*
* @param adapter type
*
* @param clazz class
* @return adapter or null if not supported
*/
public T getAdapter(Class clazz);
}