Package org.blender.dna
Class CollectionObject
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.CollectionObject
-
public class CollectionObject extends CFacade
Generated facet for DNA struct type 'CollectionObject'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.static long[]
__DNA__FIELD__ob
Field descriptor (offset) for struct member 'ob'.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 CollectionObject.-
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 CollectionObject(long __address, Block __block, BlockTable __blockTable)
protected
CollectionObject(CollectionObject that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<CollectionObject>
__io__addressof()
Instantiates a pointer on this instance.CPointer<CollectionObject>
getNext()
Get method for struct member 'next'.CPointer<BlenderObject>
getOb()
Get method for struct member 'ob'.CPointer<CollectionObject>
getPrev()
Get method for struct member 'prev'.void
setNext(CPointer<CollectionObject> next)
Set method for struct member 'next'.void
setOb(CPointer<BlenderObject> ob)
Set method for struct member 'ob'.void
setPrev(CPointer<CollectionObject> 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 CollectionObject.It is required when allocating a new block to store data for CollectionObject.
- 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:
CollectionObject collectionobject = ...; CPointer<Object> p = collectionobject.__dna__addressof(CollectionObject.__DNA__FIELD__next); CPointer<CPointer<CollectionObject>> p_next = p.cast(new Class[]{CPointer.class, CollectionObject.class});
Metadata
- Field: 'next'
- Signature: 'CollectionObject*'
- 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:
CollectionObject collectionobject = ...; CPointer<Object> p = collectionobject.__dna__addressof(CollectionObject.__DNA__FIELD__prev); CPointer<CPointer<CollectionObject>> p_prev = p.cast(new Class[]{CPointer.class, CollectionObject.class});
Metadata
- Field: 'prev'
- Signature: 'CollectionObject*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__ob
public static final long[] __DNA__FIELD__ob
Field descriptor (offset) for struct member 'ob'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
CollectionObject collectionobject = ...; CPointer<Object> p = collectionobject.__dna__addressof(CollectionObject.__DNA__FIELD__ob); CPointer<CPointer<BlenderObject>> p_ob = p.cast(new Class[]{CPointer.class, BlenderObject.class});
Metadata
- Field: 'ob'
- Signature: 'Object*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
CollectionObject
public CollectionObject(long __address, Block __block, BlockTable __blockTable)
-
CollectionObject
protected CollectionObject(CollectionObject that)
-
-
Method Detail
-
getNext
public CPointer<CollectionObject> 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<CollectionObject> next) throws java.io.IOException
Set method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
getPrev
public CPointer<CollectionObject> 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<CollectionObject> prev) throws java.io.IOException
Set method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
getOb
public CPointer<BlenderObject> getOb() throws java.io.IOException
Get method for struct member 'ob'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__ob
-
setOb
public void setOb(CPointer<BlenderObject> ob) throws java.io.IOException
Set method for struct member 'ob'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__ob
-
__io__addressof
public CPointer<CollectionObject> __io__addressof()
Instantiates a pointer on this instance.
-
-