SPVM::Native::ClassFile − Information of Class Files
The Native::ClassFile class of SPVM has methods to manipulate information of class files
use Native::ClassFile;
"method get_class_name : string ();"
Returns the class name.
If a memory error occurs, an exception is thrown.
"method get_file : string ();"
Returns the file.
If a memory error occurs, an exception is thrown.
"method set_file : void ($file : string);"
Sets the file.
If a memory error occurs, an exception is thrown.
"method get_dir : string ();"
Returns the directory.
If a memory error occurs, an exception is thrown.
"method set_dir : void ($dir : string);"
Sets the directory.
If a memory error occurs, an exception is thrown.
"method get_rel_file : string ();"
Returns the relative file.
If a memory error occurs, an exception is thrown.
"method set_rel_file : void ($rel_file : string);"
Ss the relative file.
If a memory error occurs, an exception is thrown.
"method get_content : string ();"
Returns the content.
If a memory error occurs, an exception is thrown.
"method set_content : void ($content : string);"
Sets the content.
If a memory error occurs, an exception is thrown.
"method get_content_length : int ();"
Returns the length of the content.
If a memory error occurs, an exception is thrown.
"method set_content_length : void ($content_length : int);"
Sets the length of the content.
If a memory error occurs, an exception is thrown.
Copyright (c) 2023 Yuki Kimoto
MIT License