public class PTCacheExtra extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__data
Field descriptor (offset) for struct member 'data'.
|
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 long[] |
__DNA__FIELD__totdata
Field descriptor (offset) for struct member 'totdata'.
|
static long[] |
__DNA__FIELD__type
Field descriptor (offset) for struct member 'type'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct PTCacheExtra.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
PTCacheExtra(long __address,
Block __block,
BlockTable __blockTable) |
protected |
PTCacheExtra(PTCacheExtra that) |
Modifier and Type | Method and Description |
---|---|
CPointer<PTCacheExtra> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Object> |
getData()
Get method for struct member 'data'.
|
CPointer<PTCacheExtra> |
getNext()
Get method for struct member 'next'.
|
CPointer<PTCacheExtra> |
getPrev()
Get method for struct member 'prev'.
|
int |
getTotdata()
Get method for struct member 'totdata'.
|
int |
getType()
Get method for struct member 'type'.
|
void |
setData(CPointer<java.lang.Object> data)
Set method for struct member 'data'.
|
void |
setNext(CPointer<PTCacheExtra> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<PTCacheExtra> prev)
Set method for struct member 'prev'.
|
void |
setTotdata(int totdata)
Set method for struct member 'totdata'.
|
void |
setType(int type)
Set method for struct member 'type'.
|
__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 PTCacheExtra.
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:
PTCacheExtra ptcacheextra = ...; CPointer<Object> p = ptcacheextra.__dna__addressof(PTCacheExtra.__DNA__FIELD__next); CPointer<CPointer<PTCacheExtra>> p_next = p.cast(new Class[]{CPointer.class, PTCacheExtra.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
PTCacheExtra ptcacheextra = ...; CPointer<Object> p = ptcacheextra.__dna__addressof(PTCacheExtra.__DNA__FIELD__prev); CPointer<CPointer<PTCacheExtra>> p_prev = p.cast(new Class[]{CPointer.class, PTCacheExtra.class});
public static final long[] __DNA__FIELD__type
This is how you get a reference on the corresponding field in the struct:
PTCacheExtra ptcacheextra = ...; CPointer<Object> p = ptcacheextra.__dna__addressof(PTCacheExtra.__DNA__FIELD__type); CPointer<Integer> p_type = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__totdata
This is how you get a reference on the corresponding field in the struct:
PTCacheExtra ptcacheextra = ...; CPointer<Object> p = ptcacheextra.__dna__addressof(PTCacheExtra.__DNA__FIELD__totdata); CPointer<Integer> p_totdata = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__data
This is how you get a reference on the corresponding field in the struct:
PTCacheExtra ptcacheextra = ...; CPointer<Object> p = ptcacheextra.__dna__addressof(PTCacheExtra.__DNA__FIELD__data); CPointer<CPointer<Object>> p_data = p.cast(new Class[]{CPointer.class, Object.class});
public PTCacheExtra(long __address, Block __block, BlockTable __blockTable)
protected PTCacheExtra(PTCacheExtra that)
public CPointer<PTCacheExtra> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<PTCacheExtra> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<PTCacheExtra> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<PTCacheExtra> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public int getType() throws java.io.IOException
java.io.IOException
__DNA__FIELD__type
public void setType(int type) throws java.io.IOException
java.io.IOException
__DNA__FIELD__type
public int getTotdata() throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdata
public void setTotdata(int totdata) throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdata
public CPointer<java.lang.Object> getData() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data
public void setData(CPointer<java.lang.Object> data) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data
public CPointer<PTCacheExtra> __io__addressof()