Uses of Class
com.jniwrapper.Parameter

Uses of Parameter in com.jniwrapper
 

Subclasses of Parameter in com.jniwrapper
 class AbstractFloat
          Base class for all floating point types.
(package private)  class com.jniwrapper.AbstractInteger
          Abstract base for integer types with exact (platform-independant) size.
 class AnsiString
          Represents a zero-terminated string of 8-bit (ANSI) character declared in C as (char *).
 class ArithmeticalPointer
          Pointer to a place within an allocated structure handles reading and writing of offset pointer values.
 class Bool
          Represents bool (boolean) value and type.
 class Callback
          Callback is the superclass for all classes representing callback functions.
 class Char
          Represents char value and type.
 class ComplexArray
          Represents an array of objects.
 class Const
          Represents a read-only parameter.
(package private)  class com.jniwrapper.DelegatingParameter
          This is the base class for all parameter types that are wrappers around other types.
 class DoubleFloat
          Represents double float value and type.
 class Int
          C-like int value.
 class Int16
          Represents 16-bit integer value and type.
 class Int32
          Represents 32-bit integer value and type.
 class Int64
          Represents 64-bit integer value and type.
 class Int8
          Represents 8-bit integer (byte) value and type.
 class LongDouble
          Represents long double value and type.
 class LongInt
          C-like long value.
 class OutOnly
          Represents parameter that is only written by a native function.
(package private)  class com.jniwrapper.PlatformInteger
          Abstract base class for all integers with platform-dependent size (int, long, short, etc.).
 class Pointer
          This class represents a pointer to object in terms of C language.
static class Pointer.Const
          Represents a pointer to constant object.
static class Pointer.OutOnly
          Represents a pointer to object with undefined initial value.
static class Pointer.Void
          Represents a void *.
 class PrimitiveArray
          Represents an array of primitive types such as array of bytes or array of integer values.
 class ResizingPointer
          A pointer to an array that can be resized (reallocated) on the native side.
 class ShortInt
          C-like short value.
 class SingleFloat
          Represents float value and type.
 class Structure
          The class represents structures in tems of C language.
 class UInt
          C-like unsigned int value.
 class UInt16
          Represents 16-bit unsigned integer value and type.
 class UInt32
          Represents 32-bit unsigned integer value and type.
 class UInt8
          Represents 8-bit unsigned integer value and type.
 class ULongInt
          C-like unsigned long value.
 class Union
          Represents a C union type.
 class Unused
          Represents parameter which is not accessed in native function.
 class UShortInt
          C-like unsigned short value.
 class WideChar
          Represents unicode character (wchar_t)
 class WideString
          Represents Unicode string (wchar_t *) value and type.
 class ZeroTerminatedString
          Base class for all types of zero-terminated strings.