public class CollectionChild extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__collection
Field descriptor (offset) for struct member 'collection'.
|
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 CollectionChild.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
CollectionChild(CollectionChild that) |
|
CollectionChild(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<CollectionChild> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<Collection> |
getCollection()
Get method for struct member 'collection'.
|
CPointer<CollectionChild> |
getNext()
Get method for struct member 'next'.
|
CPointer<CollectionChild> |
getPrev()
Get method for struct member 'prev'.
|
void |
setCollection(CPointer<Collection> collection)
Set method for struct member 'collection'.
|
void |
setNext(CPointer<CollectionChild> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<CollectionChild> prev)
Set method for struct member 'prev'.
|
__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
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for CollectionChild.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
CollectionChild collectionchild = ...; CPointer<Object> p = collectionchild.__dna__addressof(CollectionChild.__DNA__FIELD__next); CPointer<CPointer<CollectionChild>> p_next = p.cast(new Class[]{CPointer.class, CollectionChild.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
CollectionChild collectionchild = ...; CPointer<Object> p = collectionchild.__dna__addressof(CollectionChild.__DNA__FIELD__prev); CPointer<CPointer<CollectionChild>> p_prev = p.cast(new Class[]{CPointer.class, CollectionChild.class});
public static final long[] __DNA__FIELD__collection
This is how you get a reference on the corresponding field in the struct:
CollectionChild collectionchild = ...; CPointer<Object> p = collectionchild.__dna__addressof(CollectionChild.__DNA__FIELD__collection); CPointer<CPointer<Collection>> p_collection = p.cast(new Class[]{CPointer.class, Collection.class});
public CollectionChild(long __address, Block __block, BlockTable __blockTable)
protected CollectionChild(CollectionChild that)
public CPointer<CollectionChild> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<CollectionChild> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<CollectionChild> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<CollectionChild> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CPointer<Collection> getCollection() throws java.io.IOException
java.io.IOException
__DNA__FIELD__collection
public void setCollection(CPointer<Collection> collection) throws java.io.IOException
java.io.IOException
__DNA__FIELD__collection
public CPointer<CollectionChild> __io__addressof()