Tagged Questions
0
votes
0answers
21 views
Gettings method arguments with ASM
I found some examples that show me the location of certain method calls using a MethodAdapter:
public void visitMethodInsn(int opcode, String owner, String name, String desc) {
if ...
1
vote
1answer
31 views
Class getName() behavior in aspect vs instance method
In a Spring 3 webapp, I have a DAO that looks something like this:
public class BaseDAOImpl<T extends AbstractEntity> implements BaseDAO<T> {
...
public void ...
0
votes
2answers
48 views
Reflection: How to invoke method without parameter properly?
I am trying to invoke a method by Java reflection, which don't have any parameter as:
Method getSelectedCriteriaMethod = multipleSorting.getClass().getDeclaredMethod("getSelectedCriteria", null);
...
1
vote
3answers
73 views
Is there an easier way to retrieve hard-coded type parameters in subclass implementations?
Given the following interface:
public interface GenericInterface<T> {
T getValue();
void setValue(T newVal);
}
And the following impl:
public class FixedImpl implements ...
0
votes
2answers
45 views
Get the strongly typed property value from object in Java
What is the best way to get a strongly typed value of a property, using the property name as string, of an object in Java.
For eg: A Person class with age field as an integer, say 21. If the ...
0
votes
2answers
61 views
Java: How can I find the caller of a method at compilation time?
I have a Java problem for which I can't find an answer: I have a class A containing a method a() that should only be called from a class extending class B. For the moment, the best solution I could ...
1
vote
3answers
34 views
Assign property value with type conversion in Java
What is the best way to assign a value with type conversion to a property of an object in Java.
For eg: A Person class with age field as an integer. If the following statement has to assign integer ...
0
votes
2answers
28 views
When you plug in charger what service and classes android calls?
I have been trying to use reflection in case when anybody plug in charger or usb cable to charge their device. Can anybody please tell me what does android implements to interact with the hardware.
I ...
-3
votes
1answer
47 views
How do I get all the instance variable names and values recursively using reflection in java
Basically I need to print all the instance variable names and their values in a name value pair format recursively. Say my class structure is as below
public class SomeClass{
private String ...
0
votes
0answers
38 views
Java Serialization to a JSON string using reflection
Ok, so I am just getting into advanced topics like reflection in Java for an OOPrograming class at my university and am finding myself in deep water (for me anyway). We were given an assignment that ...
3
votes
4answers
73 views
Java create objects of generic type with unknown in compilation type parameter
I have generic class :
class Field<T> { }
And some other class(which type I only now in runtime) with many get methods for example :
class A{
public Date getDate();
public ...
0
votes
1answer
22 views
Access to Spring Test Class Object From Spring Context
Weird subjects continue with the question itself :) is there any way to reach the spring test class from spring application context? Question details is hidden in the "SimpleDaoHandler" class as ...
0
votes
3answers
38 views
Java Reflection in android
This is my TYPEFACE class
public class TYPEFACE {
public static final Typeface Rupee(Context ctx){
Typeface typeface = Typeface.createFromAsset(ctx.getAssets(), "Rupee_Foradian.ttf");
...
0
votes
1answer
41 views
How to set atributes throught reflexion
I have map of <String, Object>:
params={
dateOfBirthTo=23.05.2013,
lastName=bbb, ssn=aa-ccc-ddd,
gender=MALE,
dateOfBirthFrom=03.05.2013,
firstName=aaa
}
Then I have form which ...
0
votes
3answers
66 views
Instantiate parameterized type using Class.forName
I have the following classes:
public class B {
}
public class A<B> {
}
How do I instantiate class A using Class.forName, given that I have two string variables:
String classNameA = "A";
...
0
votes
2answers
34 views
getMethod avoiding parent classes
While using getMethod(), I've run into a problem. The class I am calling getMethod() on has many parent methods. However, I dont want getMethod to notice the methods of the parent class, only the ...
0
votes
3answers
47 views
Can't instantiate a class through reflection
When I user java reflection to create object,It will throw an "java.lang.ClassNotFoundException",this is my code:
public class Demo {
public static void main(String[] args) throws Exception {
...
2
votes
4answers
123 views
Dosen't Reflection API break the very purpose of Data encapsulation?
Very recently I came across the Reflection API and to my surprise we can access and even alter the private variables.I tried the following code
import java.lang.reflect.Field;
public class ...
0
votes
0answers
16 views
Automatically instantiate Objects and set Value for a given Path
I want to set values by a given Path String in a nested Java Object structure.
If a collction property dosen't exists the property should get automatically instantiated:
public class A {
...
0
votes
0answers
24 views
Netbeans problems with reflection
Why Netbeans takes so much time in java.lang.Class.getDeclaredField(String)?
I have isolated my problem and I have two projects:
I created a Netbeans Platform program with one module that has one ...
2
votes
1answer
58 views
Using reflection to set property values where types are unknown
I am using reflection to set value object properties at runtime. If everything were a string, I may not be asking this question, but that's not the case. I have a web service that returns json and I ...
1
vote
1answer
34 views
Accessing properties of subclasses and superclasses in java with reflection
I have a number of classes that derive from the same base type. The base type contains all the members common to the subclasses. When subclass is instantiated, I need to access its members through ...
0
votes
1answer
48 views
Recreating a method invocation (using reflection)
How do I recreate a method invocation? when all I've got is the list of methods, obtained by getDeclaredMethods(), and converted into a HashMap<String,Method> and a list of its parameters' ...
2
votes
1answer
36 views
What strategies are used for annotation scanning in practice?
I am aware of the below mentioned ways in which annotations could be detected and used:
Annotation processors (compile time code generation)
Runtime annotation scanning (e.g. ASM and other byte-code ...
0
votes
1answer
45 views
Guice doesn't inject morphia returned object
I have a class that identifies a field with @Inject. I persist this object to MongoDB using morphia. When the time comes to get the object back, I execute a query, like this:
MorphiaVersionedPerson ...
-3
votes
2answers
52 views
Java - Check if an object (class) implements an interface [duplicate]
I'm trying to check if an object implements an interface (If that class of that object implements the interface) in Java.
How do I do that?
I saw you can do this.getClass().getInterfaces(), but that ...
2
votes
1answer
32 views
Get list of fields with annotation, by using reflection
I create my annotation
public @interface MyAnnotation {
}
I put it on fields in my test object
public class TestObject {
@MyAnnotation
final private Outlook outlook;
@MyAnnotation
...
-1
votes
3answers
70 views
Is getConstructor() really call the constructor?
public MyClass {
public HashMap<String, String> fu;
public MyClass() {
fu = new HashMap<>();
}
public void myMalloc() {
fu = new HashMap<>();
}
}
Class<?> cl = ...
4
votes
4answers
117 views
How to pass an object with an unknown type to a Class with an unknown type
I am currently working on a homework assignment for a Java programming course I am taking. I am not asking for an exact answer, but for some guidance.
The problem I'm working on is this:
I have a ...
0
votes
2answers
58 views
Search class by name
I'd like to search a class that matches a given pattern in all the classes loaded at the current moment.
For example I'd like to do something like:
List<Class<?>> classess = ...
2
votes
1answer
42 views
Difference between RTTI and reflection in Java
My question is when how does the class info gets loaded during runtime?
When someone calls instanceof is that considered RTTI or reflection? Or it depends on the actual situation?
2
votes
3answers
90 views
Generic List and reflection
I'd like to call via reflection the following method, but I have problem to specify the correct signature:
public void executeRule(List<Node> params, SomethingStrangeFound callMeBack) throws ...
-1
votes
1answer
44 views
Detecting dynamically loaded classes in a java program
I am using soot to instrument classes of an application. But I've found to way to instrument classes dynamically with it. Soot only detect static links which would cause failures with programs with ...
0
votes
1answer
22 views
Issue when dynamically setting properties using reflection
I have a task where object properties need to be populated from data received via JSON web service. The property names are mapped to the JSON keys. I am using the following code in an attempt to ...
1
vote
2answers
53 views
How to loop through fields in a subclass using reflection
I need to loop through the public properties in a subclass of an abstract base class. I have used reflection for this sort of thing before, but now I need to also retrieve the fields that are in the ...
0
votes
5answers
36 views
Handling plugins in Java appliations
I know that reflection is used to dynamically find classes and methods at run time. So they are useful in plugins architecture. Is there any other way of achieving this? Does Java have any other ...
0
votes
1answer
32 views
synthetic static fields in java with type “java.lang.Class”
I saw some synthetic fields in class org.jfree.data.time.RegularTimePeriod, and have no ideas what they are and are for. I use this code to find them out:
for (Field f : ...
0
votes
4answers
62 views
Get parameter values of the calling method
How to get parameter values of the calling method?
I have scenario where there are two classes viz., Class A and Class B containing two methods mthA(in Class A) and mthB(in Class B). mthA calls mthB. ...
-4
votes
0answers
43 views
Reflection and static classes [closed]
I try to intercept some OpenGL calls for testing my rendering classes. Reflection is used for replacing the OpenGL backend.
I feel this class is badly written and I need advices for refactoring it.
...
1
vote
1answer
26 views
Embeddable, runtime Java object inspector for debugging
I'm looking for a lightweight way of embedding some GUI-based object inspection facilities in a Java application.
Ideally it would be something like the variable inspector in the Eclipse debugger, ...
2
votes
2answers
73 views
Adding new method to a class through reflection [duplicate]
Is it possible to add a method to a class through reflection in java??
public class BaseDomain {
public BaseDomain(){
Field[] fields = this.getClass().getDeclaredFields();
...
0
votes
2answers
30 views
Java equivalent of Mono.Cecil or .NET's reflection with access to MSIL code
I thought I'd automate error detection in future code, provided some of our code needs to explicitly release connection objects because of what we think is a bug in the Java HTTP API we use (not ...
1
vote
2answers
39 views
Why warning when trying to reflection on empty argument function
I was trying to use reflection to call funcA() of a class ClsA. However Eclipse Juno is showing a warning in TestA class remark with warning (A) as shown below.
The ClsA is like this:
public class ...
0
votes
1answer
31 views
How to reflect a field that implements map interface?
I'm trying to get the value of the following field via reflection:
Map<String,ClassLoader> loaders0 = new LinkedHashMap<String,ClassLoader>();
but when I try to get the value using ...
8
votes
1answer
50 views
Java Reflection Snippet output
I was just exploring java reflection API and i encountered following code snippet
public class Main {
public static void main(String[] args) throws IllegalAccessException, NoSuchFieldException{
...
-1
votes
1answer
28 views
Comparison against Double.TYPE and Double.class
Actually this is not a question, since I will provide the answer right away, so you don't fall for the same thing:
I wanted to check (using reflection) if a Field is a primitive or one of the wrapper ...
1
vote
3answers
52 views
this.getClass().getFields().length; always returns 0 [duplicate]
I am trying to get the number of fields in a particular class. However the technique I am using is not working and always returns 0:
this.getClass().getFields().length;
How do I get the field ...
0
votes
2answers
36 views
How can i generalize method invocation among servlets?
I have the following code inside doPost() in one of my controllers. This code basically takes the action parameter from the request and executes a method having the same name as the value of action. ...
7
votes
1answer
74 views
Reflectively checking whether a object is a valid generic argument to a method
How do you check using reflection whether a given object would be a valid parameter of a method (where the parameter and the object are generic types)?
To get a bit of background, this is what I'm ...
-1
votes
2answers
43 views
Getting relative inner class name in Java
package u.v;
class x {
static class xx {
static class xxx { }
}
}
While I can get the canonical ("absolute") name of the inner class
public class a{
public static void ...





