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