File tree 1 file changed +6
-6
lines changed
src/main/java/de/rub/nds/modifiablevariable/util
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
import org .apache .logging .log4j .Logger ;
19
19
20
20
/**
21
- *
21
+ *
22
22
*/
23
23
public class ModifiableVariableAnalyzer {
24
24
25
25
private static final Logger LOGGER = LogManager .getLogger (ModifiableVariableAnalyzer .class );
26
26
27
27
/**
28
28
* Lists all the modifiable variables declared in the given class
29
- *
29
+ *
30
30
* @param object
31
31
* Analyzed object
32
32
* @return A list of modifiable variable fields for the given object
@@ -37,7 +37,7 @@ public static List<Field> getAllModifiableVariableFields(Object object) {
37
37
38
38
/**
39
39
* Returns a random field representing a modifiable variable in the given class
40
- *
40
+ *
41
41
* @param object
42
42
* Analyzed object
43
43
* @return A random field representing a modifiable variable
@@ -50,7 +50,7 @@ public static Field getRandomModifiableVariableField(Object object) {
50
50
51
51
/**
52
52
* Returns true if the given object contains a modifiable variable
53
- *
53
+ *
54
54
* @param object
55
55
* Analyzed object
56
56
* @return True if the object contains a modifiable variable.
@@ -62,7 +62,7 @@ public static boolean isModifiableVariableHolder(Object object) {
62
62
63
63
/**
64
64
* Returns a list of all ModifiableVariableFields (object-field representations) for a given object.
65
- *
65
+ *
66
66
* @param object
67
67
* Analyzed object
68
68
* @return A list of objects with their modifiable variable fields (only objects with modifiable variables
@@ -81,7 +81,7 @@ public static List<ModifiableVariableField> getAllModifiableVariableFieldsRecurs
81
81
82
82
/**
83
83
* Returns a list of all the modifiable variable holders in the object, including this instance.
84
- *
84
+ *
85
85
* @param object
86
86
* Analyzed object
87
87
* @return A list of objects with their modifiable variable fields (only objects with modifiable variables
You can’t perform that action at this time.
0 commit comments