Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.

learn more… | top users | synonyms

0
votes
1answer
34 views

Get underlying data type of binding

How to get the underlying data type of a bound property? For testing purposes I created a viewmodel 'Person' with a property 'Age' of type Int32, that is bound to a textbox's text property. Is there ...
1
vote
2answers
66 views

Indirection with linq : Change query expression “Select” according users parameters

I use a table "TLanguage" to record lable results of my site. I have 4 columns in this table: French, English, German and Spanish. In a MVC application I use this query: var req = (from TYP in ...
0
votes
2answers
47 views

Java - Reflection setting value at runtime

i try to set values for the field available in a java bean like the following and i want to omit the static final fields: public Class creatObjectWithDefaultValue(String className) throws ...
2
votes
3answers
69 views

How to programmatically read a Java interface?

I'd like to implement a method that returns the field(s) from an interface that define a specified (int) value. I don't have source to the interface. So, the signature could be something like this: ...
0
votes
3answers
67 views

Java - Reflection. Set value for the class object which are dynamically created

Hi have a class[many] for which I create object dynamically during run time. now I want to set value for the fields which are private fields. How do I set them. I have seen many examples which ...
0
votes
1answer
24 views

How does one get a list of authorization filters that have been applied to a particular controller action?

In an asp.net MVC application, a colleague is trying to build a role dependent set of UI elements in the web site's layout control, and my colleague wants to make an html extension that appears or ...
3
votes
2answers
104 views

Is int.class.isInstance(Object) a contradiction?

Here's an example: public boolean check(Class<?> clazz, Object o) { return clazz.isInstance(o); } check(int.class, 7); // returns false Since isInstance accepts an Object, it won't work ...
1
vote
2answers
68 views

How to get `Type` of subclass from base class

I have an abstract base class where I would like to implement a method that would retrieve an attribute property of the inheriting class. Something like this... public abstract class MongoEntityBase ...
0
votes
1answer
59 views

passing method as parameter and getting error: java.lang.NoSuchMethodException: [duplicate]

I am getting error: java.lang.NoSuchMethodException: here is my code public class ManageEnrollmentTest { @Test public void Test_Filter_By_Active() throws Exception{ assertTrue("Log ...
0
votes
0answers
30 views

Abstraction - How to create the correct inherited class based on what is stored in the database

I have the following abstract class: class Media { function Get Media() { // Get the media type } } And the following classes that derive from that class: class ImageMedia ...
2
votes
2answers
64 views

Getting Class object from its string name in C#

I'm using C# for developing mobile applications(Monotouch, monodroid). I have a class by this definition: public class TempIOAddOn : BaseIOAddOn { public TempIOAddOn () { } } And I use ...
3
votes
1answer
84 views

MethodHandle Lookup facility

As far as JavaDoc states MethodHandles.lookup() returns facility that have ability to access the same method/functions/constructor as the caller of this function. Specifically, if the caller can ...
-1
votes
1answer
68 views

How to get field name from Java interface value?

I have some cowboy code that needs a little refinement. I'd like to improve documentational logging without the shame of a huge hard-coded switch statement. In the following code, I'd like to be ...
1
vote
1answer
56 views

How to get MethodInfo for basic methods, not properties and events, via reflection? [duplicate]

I'm performing some reflective interrogation of an object. The code lists constructor(s), properties, and methods. GetMethods( ) returns property accessor/mutator methods and event add/remove methods. ...
0
votes
2answers
55 views

Java - Reflection - How to get @RequestHeader value using reflection

Following is my method : @PreAuthorize("isAuthenticated() and hasPermission(#request, 'CREATE_REQUISITION')") @RequestMapping(method = RequestMethod.POST, value = "/trade/createrequisition") ...
0
votes
2answers
35 views

What is the reason behind setAccessible method of AccessibleObject class have a boolean parameter?

I am very new in Reflection and I have a doubt like: public void setAccessible(boolean flag) throws SecurityException This method has a boolen parameter flag, which indicates the new accessibility ...
1
vote
3answers
51 views

Java - BigDecimal and Reflection

when i check the parameter of the method which is in a class using java reflection for java.math.BigDecimal and java.lang.String isPrimitive() return false. yes they are not primitive but i want to ...
0
votes
2answers
28 views

display all array elements of a method param types

I want to get all the element of the array which contains the Param types of a method (getted dynamically with Java.reflect), here's the code if I have 2 params in the method : Method testMethod = ...
0
votes
1answer
37 views

MVC4: List of all urls available on the site?

We have quite a large MVC4 application and we would like to have Selenium go through every page and make sure it loads - some sort of smoke test. I can use reflection to go through the assembly, ...
0
votes
3answers
44 views

Comparing two unknown type object

Here is the situation. I have two unknown type's objects that i would like to compare to know if one is identical to another. Both can be string, int, enumerable or any custom class you can imagine. ...
2
votes
1answer
111 views

Scala: cross (cartesian) product with multiple sources and heterogeneous types

I'm trying to construct multiple cross products of traversables of different (but each homogeneous) types. The desired return type is a traversable of a tuple with the type matching the types in the ...
0
votes
1answer
42 views

Simple undirected unlabelled graph in JGraphT doesn't work? What is the edgeClass parameter?

I want to make a simple undirected unlabelled (edges aren't labelled) graph A<->B in JGraphT 0.8.3: import org.jgrapht.graph.DefaultEdge; import org.jgrapht.graph.SimpleGraph; class A { ...
0
votes
2answers
41 views

Nullable problems with Activator.CreateInstance and Convert.ChangeType

I have a third party library which sets a given objects property using reflection as follows. (This is the simplified version) public void Set(object obj, string prop, object value) { var propInf ...
0
votes
1answer
73 views

Invoke a method in Singleton class using reflection in java

I have a following class: Public class ABCinfo { private static ABCinfo instance = null; Public static ABCinfo getInstance(Param param); // get instance Private ABCinfo(Param); // making ...
0
votes
2answers
26 views

Can I declare method to return Class object with restriction to subclasses of given type in Java?

Suppose I declare some abstract method, that will return Class object (like Dog.class, Cat.class), like this: abstract public Class getProducedAnimalType(); Can I force clients extending this API ...
1
vote
2answers
30 views

Given simple type T, get array type T[]

How can I get the type of Array of type T given T ? LinqPad-friendly snippet below: void Main() { Type t = typeof(string); Type tArray = GetArrayType(t); tArray.Dump(); // ...
0
votes
6answers
59 views

Java - How Can I Check If A Class Is Inheriting From Some Class Or Interface?

I need to check: public static boolean check(Class<?> c, Class<?> d) { if (/* c inherits from d */) return true; else return false; } How can I do that ? And is ...
0
votes
2answers
140 views

how to pass multiple parameters to a method in java reflections

Hi i am using reflections to achieve something. I have been given class name, method name of that class and parameter values that needs to be passed to that method in a file(Take any file. Not a ...
0
votes
0answers
14 views

.NET Reflection policy exception

I have a strange problem: I deployed a .NET 2.0 application that uses reflection and I got a Policy Exception once I call Assembly.LoadFile. The error is the following: Could not load file or ...
1
vote
1answer
54 views

How to set a property value from an expression?

I need orientation on this scenario. For example I have this class: public class Schema { public string Value {get; set;} } On the front end the user will have the chance to enter the value for ...
1
vote
2answers
67 views

How do I create Java built-in object from string

Suppose I want to create a Java object from string. Object obj = Class.forName("com.my.object.MyObject").newInstance(); I was able to create MyObject. My question is how can I create a Java ...
0
votes
1answer
56 views

Call a method provided by future API

I want to extend my previous question. If in my code there is a method provided by future API, also if I check the version I have the following warning in LogCat 04-24 09:30:12.565: I/dalvikvm(471): ...
0
votes
3answers
81 views

How do I find the Java interface whose method is implemented in a given class?

I need quite the opposite of what most people want to juggle with: I have a StackTraceElement with className and methodName. As the method belongs to an interface given class implements, I need a way ...
0
votes
2answers
74 views

Reflection - How to set values for the POJO Class whose instance is created using reflection

i have created a instance for my pojo class like the following using reflection : package com.hexgen.tools; public class Foo { public static void main(String[] args) { Class c = null; ...
0
votes
1answer
45 views

Is it possible to create new instance of primitive of user defined POJO

i have class TestClass is it possible to create new instance for this during runtime ? like the way we create TestClass someObj = new TestClass(); also TestClass[] someObj = new TestClass(); same ...
2
votes
1answer
70 views

scala reflection can not work at this case

I declared a class: trait TO { @BeanProperty var id: String = _ @BeanProperty var age : Int = _ @BeanProperty var createdAt : Long = _ @BeanProperty var disable: Boolean = _ ...
2
votes
3answers
54 views

Difference between ParameterInfo.IsOptional and ParameterInfo.HasDefaultValue?

They both sound similar. From msdn: ParameterInfo.IsOptional Gets a value indicating whether this parameter is optional. This method depends on an optional metadata flag. This flag can be ...
3
votes
1answer
35 views

Difference between ParameterInfo.DefaultValue and ParameterInfo.RawDefaultValue

This is a follow-up question of How do I get default values of optional parameters? From documentation, DefaultValue: Gets a value indicating the default value if the parameter has a default ...
0
votes
3answers
35 views

is there a way to execute a function when I have its name in a string

Consider I have a name of a function which does not require any argument in a var - var fn = "foo"; Can I execute it in some or similar like this - eval(fn); It does not work. Please suggest. ...
1
vote
3answers
96 views

Java reflection: how to get field value from an object, not knowing its class

Say, I have a method that returns a custom List with some objects. They are returned as Object to me. I need to get value of a certain field from these objects, but I don't know the objects' class. ...
1
vote
1answer
43 views

Automatically create TableView columns based on data class info

I have this editable JavaFX table for editing data: public class DataTable { public void initTable(Stage primaryStage, Group root, Scene scene) { tableView.setEditable(true); ...
8
votes
1answer
101 views

Is it possible to design a C# class that when querying it through reflections will mark itself as positive IsValueType and positive IsClass?

Is it possible to design a C# class that when querying it through reflections will mark itself as positive IsValueType and positive IsClass? Or are they actually mutually exclusive markings? I know ...
0
votes
0answers
71 views

Any way to properly type Scala classes that were generated at runtime with ASM?

Noob here, I'd like to extend the class, get a class literal, use it as a type parameter, or cast to it. Currently I can instantiate my ASM generated class and invoke it's methods with reflection, ...
3
votes
2answers
77 views

Java: How do I create a list of a class from String

I want to create a list typed to the name of a class from a string. For example, String nameOfClass = "com.my.list.class"; List list = new ArrayList<nameOfclass>(); I only know the type of ...
0
votes
0answers
69 views

Downcast an object to type specified in a “Type” variable [duplicate]

Referring the code below: Void Work(object obj,Type objType) { //code to downcast obj to type speciied in objType } I am new to Reflections in C#. I'll really appreciate if someone can guide me ...
0
votes
2answers
36 views

Change code inside a .net dll

I have a large .net solution with more than 20 projects. It consists of 1 executable and lots of dll's. A change to our SOE has broken the app. I need to be able to open the executable and one dll ...
2
votes
1answer
296 views

Airplane mode in Jelly Bean

I am trying to set the airplane mode in a Nexus 4 with Android 4.2.2. I know it is not possible since AIRPLANE_MODE_ON was moved to Global system settings and it is just a read option. Is there any ...
2
votes
2answers
58 views

Working with objects created with Activator.CreateInstance

Consider the code below: void fun1(string typeName) { object adap = Activator.CreateInstance(typeName); adap.dowork(); //won't compile because of strongly typed. } Using ...
1
vote
1answer
92 views

Find all subclasses in dart

I have three classes in dart: class A {} class B extends A{} class C extends A{} There is a way to get all subclasses from A? Edit: Thanks Alexandre Ardhuin your solution worked perfectly! I'm ...
0
votes
2answers
42 views

Using Reflection for static object creation

class HueHue { private $hue; public function show(){ echo $this->hue; } public static function parse($string){ // parse it all $HueHue = new HueHue(); ...

1 3 4 5 6 7 181