org.ptolemy.fmi
Interface FMILibrary.FMICallbackFreeMemory

All Superinterfaces:
com.sun.jna.Callback
All Known Implementing Classes:
FMULibrary.FMUFreeMemory
Enclosing interface:
FMILibrary

public static interface FMILibrary.FMICallbackFreeMemory
extends com.sun.jna.Callback

A callback for the fmiCallbackFreeMemory() function. See the documentation for FMICallbackLogger above for details.


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.jna.Callback
com.sun.jna.Callback.UncaughtExceptionHandler
 
Field Summary
 
Fields inherited from interface com.sun.jna.Callback
FORBIDDEN_NAMES, METHOD_NAME
 
Method Summary
 void apply(com.sun.jna.Pointer object)
          Free the object.
 

Method Detail

apply

void apply(com.sun.jna.Pointer object)
Free the object. In Java, the Memory.finalize() method will free up memory for you, so this method is a no-op.

Parameters:
object - The object to be freed. If the object parameter is null, then take no action.