AbstractClass
/**
* @brief A java abstract class with a keyword 'abstract'.
*/
Inherit from Class
Primary key: element_hash_id: int
schema AbstractClass extends Class {
@primary element_hash_id: int,
qualified_name: string,
identifier_hash_id: int,
location_hash_id: int,
parent_hash_id: int
}
AbstractClass::getSuperOrImplementsType
/**
* @brief gets the super class or implemented interface of the class element.
* @return ClassOrInterface
*/
- Parameter
self
:AbstractClass
- Return
*ClassOrInterface
pub fn getSuperOrImplementsType(self: AbstractClass) -> *ClassOrInterface;
AbstractClass::getModifier
/**
* @brief gets the modifier of the Class
* @return Modifier
*/
- Parameter
self
:AbstractClass
- Return
*Modifier
pub fn getModifier(self: AbstractClass) -> *Modifier;
AbstractClass::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:AbstractClass
- Return
int
pub fn getParentHashId(self: AbstractClass) -> int;
AbstractClass::getIdentifierHashId
/**
* @brief gets the identifier hash id of this element.
* @return int
*/
- Parameter
self
:AbstractClass
- Return
int
pub fn getIdentifierHashId(self: AbstractClass) -> int;
AbstractClass::getParent
/**
* @brief gets the parent of the method.
* @return ElementParent
*/
- Parameter
self
:AbstractClass
- Return
ElementParent
pub fn getParent(self: AbstractClass) -> ElementParent;
AbstractClass::getAnnotation
/**
* @brief gets the annotation of the class, if any.
* @return Annotation
*/
- Parameter
self
:AbstractClass
- Return
*Annotation
pub fn getAnnotation(self: AbstractClass) -> *Annotation;
AbstractClass::getAnAscentantClassOrInterface
/**
* @brief gets any ascentant class or interface of the class element.
* @return ClassOrInterface
*/
- Parameter
self
:AbstractClass
- Return
*ClassOrInterface
pub fn getAnAscentantClassOrInterface(self: AbstractClass) -> *ClassOrInterface;
AbstractClass::getName
/**
* @brief gets the name of the class.
* @return string
*/
- Parameter
self
:AbstractClass
- Return
string
pub fn getName(self: AbstractClass) -> string;
AbstractClass::getPackage
/**
* @brief gets the package of the class element.
* @return Package
*/
- Parameter
self
:AbstractClass
- Return
Package
pub fn getPackage(self: AbstractClass) -> Package;
AbstractClass::getAllMethods
/**
* @brief gets all methods of the class element.
* @return Method
*/
- Parameter
self
:AbstractClass
- Return
*Method
pub fn getAllMethods(self: AbstractClass) -> *Method;
AbstractClass::getQualifiedName
/**
* @brief gets the qualified name of this element.
* @return string
*/
- Parameter
self
:AbstractClass
- Return
string
pub fn getQualifiedName(self: AbstractClass) -> string;
AbstractClass::getIdentifier
/**
* @brief gets the identifier of the class name.
* @return Identifier
*/
- Parameter
self
:AbstractClass
- Return
Identifier
pub fn getIdentifier(self: AbstractClass) -> Identifier;
AbstractClass::getSuperClass
/**
* @brief gets the super class of the element.
* @return Class
*/
- Parameter
self
:AbstractClass
- Return
Class
pub fn getSuperClass(self: AbstractClass) -> Class;
AbstractClass::getImplementsInterface
/**
* @brief gets the implemented interface of the class element.
* @return Interface
*/
- Parameter
self
:AbstractClass
- Return
*Interface
pub fn getImplementsInterface(self: AbstractClass) -> *Interface;
AbstractClass::getSize
/**
* @brief gets the size information of the class element.
* @return NumberOfLines
*/
- Parameter
self
:AbstractClass
- Return
NumberOfLines
pub fn getSize(self: AbstractClass) -> NumberOfLines;
AbstractClass::getAllFields
/**
* @brief gets all fields of the class.
* @return Field
*/
- Parameter
self
:AbstractClass
- Return
*Field
pub fn getAllFields(self: AbstractClass) -> *Field;
AbstractClass::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:AbstractClass
- Return
Location
pub fn getLocation(self: AbstractClass) -> Location;
AbstractClass::getContainingFile
/**
* @brief gets the containing file of the class element.
* @return File
*/
- Parameter
self
:AbstractClass
- Return
File
pub fn getContainingFile(self: AbstractClass) -> File;
AbstractClass::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*AbstractClass
pub fn __all__(db: JavaDB) -> *AbstractClass;
AbstractClass::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:AbstractClass
- Return
int
pub fn getLocationHashId(self: AbstractClass) -> int;
AbstractClass::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:AbstractClass
- Return
*ElementParent
pub fn getAnAncestor(self: AbstractClass) -> *ElementParent;
AbstractClass::getAnAncestorClass
/**
* @brief gets all ancestor classes of the element.
* @return Class
*/
- Parameter
self
:AbstractClass
- Return
*Class
pub fn getAnAncestorClass(self: AbstractClass) -> *Class;