Package org.blender.dna
Class CacheFileLayer
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.CacheFileLayer
-
public class CacheFileLayer extends CFacade
Generated facet for DNA struct type 'CacheFileLayer'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.static long[]
__DNA__FIELD__filepath
Field descriptor (offset) for struct member 'filepath'.static long[]
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.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 CacheFileLayer.-
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 CacheFileLayer(long __address, Block __block, BlockTable __blockTable)
protected
CacheFileLayer(CacheFileLayer that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<CacheFileLayer>
__io__addressof()
Instantiates a pointer on this instance.int
get_pad()
Get method for struct member '_pad'.CArrayFacade<java.lang.Byte>
getFilepath()
Get method for struct member 'filepath'.int
getFlag()
Get method for struct member 'flag'.CPointer<CacheFileLayer>
getNext()
Get method for struct member 'next'.CPointer<CacheFileLayer>
getPrev()
Get method for struct member 'prev'.void
set_pad(int _pad)
Set method for struct member '_pad'.void
setFilepath(CArrayFacade<java.lang.Byte> filepath)
Set method for struct member 'filepath'.void
setFlag(int flag)
Set method for struct member 'flag'.void
setNext(CPointer<CacheFileLayer> next)
Set method for struct member 'next'.void
setPrev(CPointer<CacheFileLayer> 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 CacheFileLayer.It is required when allocating a new block to store data for CacheFileLayer.
- 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:
CacheFileLayer cachefilelayer = ...; CPointer<Object> p = cachefilelayer.__dna__addressof(CacheFileLayer.__DNA__FIELD__next); CPointer<CPointer<CacheFileLayer>> p_next = p.cast(new Class[]{CPointer.class, CacheFileLayer.class});
Metadata
- Field: 'next'
- Signature: 'CacheFileLayer*'
- 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:
CacheFileLayer cachefilelayer = ...; CPointer<Object> p = cachefilelayer.__dna__addressof(CacheFileLayer.__DNA__FIELD__prev); CPointer<CPointer<CacheFileLayer>> p_prev = p.cast(new Class[]{CPointer.class, CacheFileLayer.class});
Metadata
- Field: 'prev'
- Signature: 'CacheFileLayer*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__filepath
public static final long[] __DNA__FIELD__filepath
Field descriptor (offset) for struct member 'filepath'.Field Documentation
Blender Python API
Path to the archiveBlender Source Code
1024 = FILE_MAX.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
CacheFileLayer cachefilelayer = ...; CPointer<Object> p = cachefilelayer.__dna__addressof(CacheFileLayer.__DNA__FIELD__filepath); CPointer<CArrayFacade<Byte>> p_filepath = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'filepath'
- Signature: 'char[1024]'
- Actual Size (32bit/64bit): 1024/1024
-
__DNA__FIELD__flag
public static final long[] __DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
CacheFileLayer cachefilelayer = ...; CPointer<Object> p = cachefilelayer.__dna__addressof(CacheFileLayer.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'flag'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD___pad
public static final long[] __DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
CacheFileLayer cachefilelayer = ...; CPointer<Object> p = cachefilelayer.__dna__addressof(CacheFileLayer.__DNA__FIELD___pad); CPointer<Integer> p__pad = p.cast(new Class[]{Integer.class});
Metadata
- Field: '_pad'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
CacheFileLayer
public CacheFileLayer(long __address, Block __block, BlockTable __blockTable)
-
CacheFileLayer
protected CacheFileLayer(CacheFileLayer that)
-
-
Method Detail
-
getNext
public CPointer<CacheFileLayer> 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<CacheFileLayer> next) throws java.io.IOException
Set method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
getPrev
public CPointer<CacheFileLayer> 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<CacheFileLayer> prev) throws java.io.IOException
Set method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
getFilepath
public CArrayFacade<java.lang.Byte> getFilepath() throws java.io.IOException
Get method for struct member 'filepath'.Field Documentation
Blender Python API
Path to the archiveBlender Source Code
1024 = FILE_MAX.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__filepath
-
setFilepath
public void setFilepath(CArrayFacade<java.lang.Byte> filepath) throws java.io.IOException
Set method for struct member 'filepath'.Field Documentation
Blender Python API
Path to the archiveBlender Source Code
1024 = FILE_MAX.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__filepath
-
getFlag
public int getFlag() throws java.io.IOException
Get method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
setFlag
public void setFlag(int flag) throws java.io.IOException
Set method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
get_pad
public int get_pad() throws java.io.IOException
Get method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
set_pad
public void set_pad(int _pad) throws java.io.IOException
Set method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
__io__addressof
public CPointer<CacheFileLayer> __io__addressof()
Instantiates a pointer on this instance.
-
-