Package org.blender.dna
Class ImageAnim
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.ImageAnim
-
public class ImageAnim extends CFacade
Generated facet for DNA struct type 'ImageAnim'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__anim
Field descriptor (offset) for struct member 'anim'.static long[]
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.static long[]
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct ImageAnim.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description ImageAnim(long __address, Block __block, BlockTable __blockTable)
protected
ImageAnim(ImageAnim that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<ImageAnim>
__io__addressof()
Instantiates a pointer on this instance.CPointer<java.lang.Object>
getAnim()
Get method for struct member 'anim'.CPointer<ImageAnim>
getNext()
Get method for struct member 'next'.CPointer<ImageAnim>
getPrev()
Get method for struct member 'prev'.void
setAnim(CPointer<java.lang.Object> anim)
Set method for struct member 'anim'.void
setNext(CPointer<ImageAnim> next)
Set method for struct member 'next'.void
setPrev(CPointer<ImageAnim> prev)
Set method for struct member 'prev'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct ImageAnim.It is required when allocating a new block to store data for ImageAnim.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__next
public static final long[] __DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ImageAnim imageanim = ...; CPointer<Object> p = imageanim.__dna__addressof(ImageAnim.__DNA__FIELD__next); CPointer<CPointer<ImageAnim>> p_next = p.cast(new Class[]{CPointer.class, ImageAnim.class});
Metadata
- Field: 'next'
- Signature: 'ImageAnim*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__prev
public static final long[] __DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ImageAnim imageanim = ...; CPointer<Object> p = imageanim.__dna__addressof(ImageAnim.__DNA__FIELD__prev); CPointer<CPointer<ImageAnim>> p_prev = p.cast(new Class[]{CPointer.class, ImageAnim.class});
Metadata
- Field: 'prev'
- Signature: 'ImageAnim*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__anim
public static final long[] __DNA__FIELD__anim
Field descriptor (offset) for struct member 'anim'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ImageAnim imageanim = ...; CPointer<Object> p = imageanim.__dna__addressof(ImageAnim.__DNA__FIELD__anim); CPointer<CPointer<Object>> p_anim = p.cast(new Class[]{CPointer.class, Object.class});
Metadata
- Field: 'anim'
- Signature: 'anim*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
ImageAnim
public ImageAnim(long __address, Block __block, BlockTable __blockTable)
-
ImageAnim
protected ImageAnim(ImageAnim that)
-
-
Method Detail
-
getNext
public CPointer<ImageAnim> getNext() throws java.io.IOException
Get method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
setNext
public void setNext(CPointer<ImageAnim> next) throws java.io.IOException
Set method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
getPrev
public CPointer<ImageAnim> getPrev() throws java.io.IOException
Get method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
setPrev
public void setPrev(CPointer<ImageAnim> prev) throws java.io.IOException
Set method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
getAnim
public CPointer<java.lang.Object> getAnim() throws java.io.IOException
Get method for struct member 'anim'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__anim
-
setAnim
public void setAnim(CPointer<java.lang.Object> anim) throws java.io.IOException
Set method for struct member 'anim'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__anim
-
-