Package it.ramecera.salad.analysis
Class JavaProperty
java.lang.Object
it.ramecera.salad.analysis.JavaProperty
public class JavaProperty
extends java.lang.Object
Property of a Java class.
Creation date: 2020-04-09
modification date: 2020-04-09
Company: Rameceraâ„¢
Modifications:
- Author:
- M. Maglioni
-
Field Summary
Fields Modifier and Type Field Description boolean
fabstract
if it is abstractjava.util.List<JavaAnnotation>
fannotationE
class annotationsjava.lang.String
fclasse
name of the returned classboolean
ffinal
if it is finaljava.lang.String
fnew
if there is a new (then simple = false), it says what is after the new; if not present, it is nulljava.lang.String
fnome
name of the propertyjava.lang.String
fprimitivo
the primitive type (int, boolean, etc .; String is not primitive) returned; otherwise it remains nullboolean
fstatic
if it is staticjava.lang.String
fvalore
property valueint
fvisibilita
visibility: public = 3, protected = 2, private = 1, default = 0boolean
quadre
if it is an array defined by [] -
Constructor Summary
Constructors Constructor Description JavaProperty()
-
Method Summary
-
Field Details
-
fprimitivo
public java.lang.String fprimitivothe primitive type (int, boolean, etc .; String is not primitive) returned; otherwise it remains null -
fclasse
public java.lang.String fclassename of the returned class -
fnome
public java.lang.String fnomename of the property -
fnew
public java.lang.String fnewif there is a new (then simple = false), it says what is after the new; if not present, it is null -
fvisibilita
public int fvisibilitavisibility: public = 3, protected = 2, private = 1, default = 0 -
fabstract
public boolean fabstractif it is abstract -
ffinal
public boolean ffinalif it is final -
fstatic
public boolean fstaticif it is static -
fvalore
public java.lang.String fvaloreproperty value -
quadre
public boolean quadreif it is an array defined by [] -
fannotationE
class annotations
-
-
Constructor Details
-
JavaProperty
public JavaProperty()
-