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

learn more… | top users | synonyms

6
votes
2answers
53 views

AutoFixture: how to CreateAnonymous from a System.Type

I need to create an object from AutoFixture using nothing more than a System.Type. However, there doesn't appear to be an overload of CreateAnonymous() that simply takes a type. They all expect a ...
1
vote
3answers
92 views

C# Generics, casting generic list to known parent class?

I'm trying to cast a list of objects to its parent using generics. I have classes such as: Entity Node OtherClass Where Node/OtherClass inherits from Entity. What I want to do is something like ...
2
votes
2answers
56 views

Get defined parameters for partial function

Say I have a partial function (similar to Akka's receive method for actors) def receive: PartialFunction[Any, Unit] = { case SomeCaseClass(params) => println("whatever") } Is there any way ...
2
votes
1answer
32 views

Get DataMembers from DLL assembly using System.Reflection

I'm trying to use Assembly class to get [DataMember]'s from my [ServiceContract]. The problem is, my method returns an empty collection... Here's my code: Assembly assembly = ...
0
votes
1answer
33 views

ObjectContext.CreateObject<T>: Create ComplexObject

Could someone please explain the following: I have the following code that creates an instance of a type specified: MethodInfo methodInfo = ...
-1
votes
1answer
43 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 ...
1
vote
2answers
48 views

Instantiating an array of inaccessible class through reflection

This is my first question here so first of all - Hello to everyone. Now to my question. I am currently helping in the development of a game using Unity3D engine. We need to use a Curve Editor for ...
1
vote
1answer
22 views

Interpreting MethodBody.ExceptionHandlingClauses collection

I am using reflection to analyse a method's exception handling blocks with the [ExceptionHandlingClauses] property of the [MethodBody] class. I could not figure out from MSDN Documentation how this ...
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
86 views

What's faster: expression trees or manually emitting IL

Is there a performance difference between creating a method emitting IL directly, as opposed to building an expression tree?
2
votes
2answers
58 views

Determine if a derived class implements a generic interface with itself as the generic parameter

I have seen answers on SO with similar questions but did not find one addressing all criteria below. How can I determine whether class B meets the following criteria when B inherits from A: [B] ...
1
vote
1answer
41 views

Method analysis using Reflection and CodeDom

The context of this question is too elaborate to describe here and will likely adversely affect responses so I am not including it. I want to assert certain things about a method in a unit test. Some ...
2
votes
4answers
293 views

Convert List<double[]> to List<T>

I have a list of doubles List<double[]> which I want to convert to a List<T> where T is a class. The array of double contains 17 values e.g. [1.0, 2.0, 3.0, 4.0, 5.0,.. 17.0 ]. Then I ...
0
votes
2answers
45 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
3answers
67 views

Verifying code against template patterns using reflection

I am working on a large project where a base class has thousands of classes derived from it (multiple developers are working on them). Each class is expected to override a set of methods. I first ...
2
votes
4answers
116 views

C# and use of reflection [duplicate]

I came over this site (http://snipplr.com/view.php?codeview&id=17637), which illustrates use of reflection like this: public class Person { public int Age { get; set; } ...
3
votes
1answer
49 views

PHP How to check if a subclass has overridden a method of a superclass?

Using PHP, how can a class determine if a subclass has overridden one if its methods? Given the following two classes: class Superclass { protected function doFoo($data) { // empty } ...
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 ...
3
votes
2answers
63 views

Scala : get mixin interfaces at runtime

I need to get all the interfaces at runtime from a given Class (all loaded in a ClassLoader). For instance, if a class has been declared this way : trait B trait C trait D class A extends B with ...
0
votes
1answer
47 views

Per-vertex reflection and intersection calculation, OpenCL vs GLSL

I have to calculate the visibility field of a mirror on a plane (i.e: the floor). The mirror surface is composed of several triangles (up to fewer thousands). Each vertex define a mirror point, ...
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
3answers
126 views

pass “this” class type as a parameter in c#

I want to create a common method for all classes, ---> RestMethods.ClearAllStaticValues(this); so here I am passing this as a argument, which is a class reference. But how can i catch this in my ...
0
votes
4answers
61 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. ...
1
vote
1answer
52 views

Determining derived classes through reflection

I want to process the Methods of classes derived from class A. Class A and the derived classes reside in different assemblies. I use reflection to get all System.Type's from the derived assembly and ...
-4
votes
0answers
42 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
25 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
1answer
51 views

What are GetField, SetField, GetProperty and SetProperty in BindingFlags enumeration?

I have no idea what these are for. The documentation is not very clear: GetField Specifies that the value of the specified field should be returned. SetField Specifies that the value of the ...
1
vote
2answers
48 views

Simplest way to get all MemberInfos that reflect the state of an object?

I need to get all members that represent the exact state of an object using reflection. So these members include fields (FieldInfo) and auto-properties (PropertyInfo). I can get all the FieldInfos ...
1
vote
2answers
93 views

Get dictionary key-value pairs without knowing its type

I have an object instance for which instance.GetType().GetGenericTypeDefinition() == typeof(Dictionary<,>) is true. My question is, how can I extract the key-value pairs from this object ...
0
votes
1answer
28 views

Backing fields for hidden properties

Let's say I have the following example classes: public class Base { public int Value { get; set; } } public class Derived : Base { public new string Value { get; set; } public bool ...
0
votes
1answer
20 views

get object variables in abstract class

I have a abstract class which implements the JsonSerializable Interface. version 1: abstract class MyBase implements JsonSerializable { public function jsonSerialize() { ...
3
votes
1answer
70 views

C# reflection - get entire parameter list for method (including the parameter for “this”)

I'm making a silly AOT .net compiler for fun, and ran into a problem. I'm just loading the assembly into memory (I'm writing it in C#) and spamming reflection left and right to get the information I ...
1
vote
1answer
46 views

Using the new reflection API, how to find the primary constructor of a class?

You can get all the constructors of a class like this: import scala.reflect.runtime.universe._ val ctor = typeOf[SomeClass].declaration(nme.CONSTRUCTOR).asTerm.alternatives Is there a way to know ...
0
votes
1answer
26 views

How can I retrieve all custom attributes on a class

I'm trying to retrieve a list all attributes applied to my class. I can see the Attribute.GetCustomAttributes() series of methods, but I can only see methods to retereive all attributes for ...
1
vote
2answers
66 views

.NET: What's the difference between GetDeclaredProperty() & GetProperty()?

I referred to the MSDN library but still remain confused. So what's the difference between the two methods? Could anyone give me an example? Thx in advance. :)
0
votes
0answers
12 views

how to set devExpress combox client side event with reflection?

I'm trying to set the client side SelectedIndexChaged event to a combobox and I have this code Assembly testAssembly = Assembly.LoadFile(DLL); Type controlType= ...
0
votes
0answers
29 views

Dynamic load assembly, how to specify the abstraction?

Assuming I have 3 levels of abstraction in different dll, composing my application Primitive Basic implements Primitive Foo implements Basic And my application load dynamically the Foo ...
2
votes
2answers
71 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
26 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 ...
4
votes
1answer
61 views

Scala reflection: what are odd names like $read and $iw doing in the reified expression?

Here are some snippets from my Scala prompt. I import the reflection API and try reifying some expressions, as described in the docs here. scala> import scala.reflect.runtime.{universe => ru} ...
0
votes
0answers
11 views

Update and validate CDI beans from request

First of all I do not use JSF. I'm writing something like framework for web application to my study. I use servlets and CDI with my custom extension. I'm trying to parse http request parameters and ...
2
votes
1answer
44 views

How to find types that are direct descendants of a base class?

I need to get all types of an assembly that inherits some base class but only the first descendants. For instance if I have: class Base { } class FirstClass : Base { } class SecondClass : ...
1
vote
1answer
35 views

Serializing jagged vs multidimensional arrays

I have an object that is of type Array (that is object.GetType().IsArray returns true). My question is how can I find out whether it is a jagged or a multidimensional array? Is there a way to ...
1
vote
2answers
38 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 ...
1
vote
1answer
65 views

Scala reflection - why TypeTag and Type?

These two types/classes in the Scala reflection API seem to represent the same thing. Why are they two separate types? scala.reflect.api.Universe.Type scala.reflect.api.Universe.TypeTag Link to ...
0
votes
2answers
36 views

C# Load Assembly w/ Common References

I've run into a slight issue - I'm writing a program that loads DLLs, each of which contain a class which inherits from a class existing in a library referenced by both the loaded DLL and the "host" ...
1
vote
1answer
58 views

Scala reflection on function parameter names

I have a class which takes a function case class FunctionParser1Arg[T, U](func:(T => U)) def testFunc(name1:String):String = name1 val res = FunctionParser1Arg(testFunc) I would like to know ...
1
vote
1answer
110 views

Understanding this function that returns Type object

I got a cool method here to check if a type is derived from another. While I was refactoring the code I got this chunk GetBlah. public static bool IsOf(this Type child, Type parent) { var ...
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
49 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 2 3 4 5 180