Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.
1
vote
1answer
20 views
Universal property path retriever for indexed/non-indexed properties
The aim is to write an universal property path retriever for indexed/non-indexed properties.
For indexing, only numerical indices have to be considered.
I have the following code. This supposed to ...
2
votes
1answer
15 views
XmlDeserialization of property with Narrowing Operator in type
I have created the following custom class to handle specific string ("YYY-MM-DD") as representation of dynamic today value. There is a couple ou Widening, Narrowing and ToString function to help ...
-1
votes
0answers
27 views
Java Reflection Dynamically building Objects/Classes [closed]
I've been reading on Java Programming, a Chapter on Reflection goes on saying that you can actually build more dynamic tools using the Reflection API. However I'm not quite sure how this can be ...
0
votes
1answer
20 views
Scala Reflection of Nested List
I'm having some trouble with nested Lists and Scala reflection.
How can I introspect a case class field of type List[List[something]]?
Some code here. It's stripped--in real life it builds static ...
2
votes
3answers
96 views
C# - GetValue - Object Does Not Match Target Type
I am trying to write a generic method to compare two objects (I purposefully have two different types coming in. The second one has the same properties as the first one. The first just has more.).
I ...
0
votes
1answer
19 views
How to get constructor arguments in a method using typetags/mirrors?
For Case Class:
case class MyClass(param1: String, param2: String)
Why does this reflective method:
import scala.reflect.runtime.universe._
import scala.reflect.runtime.currentMirror
import ...
2
votes
2answers
60 views
init string constants by reflection
I am refactoring some old code and find a class "Tags" containing string constants, most of them tags used by some XML-Parser-Handlers. But also for serialising data. They are defined blank:
...
0
votes
2answers
51 views
Collection based Generics and Reflection
So heres my problem. I have two classes...SingularEntity and a ListEntity. As the name suggests, SingularEntity represents an Entity and a ListEntity represents a List of Singular Entities....the list ...
0
votes
1answer
33 views
compile with javax.tools & running without reflection
I am new in the forum and pretty new about Java coding.
Anyway I am implementing my Java code to dynamically compile and run different classes which are not know a priori and which could change over ...
1
vote
3answers
49 views
Overriding method in DLL using reflection
I am not even sure if this is possible so apologies if not. I have googled quite extensively and not found what I am looking for.
Basically we have an application produced by a third party, which, ...
0
votes
3answers
42 views
Dynamically typed objects created with dependency injection
I have a piece of existing code that works using reflection, but I'd like to start creating the objects using dependency injection and Guice, if possible.
Here's how it currently works:
...
2
votes
2answers
43 views
Risks of loading Assemblies via reflection
This is a followup from my previous question, I want to examine the StrongName of an assembly before loading it (either via a file on the hard disk or via the byte data). To ensure that it's been ...
0
votes
0answers
44 views
TargetException - PropertyInfo.SetValue failed
I have a 'nice' problem here in which i spent to much time without any results. I've looked through google and so...without any success.
I'm using .Net 4.0 on the Desktop(Windows7-64Bit) and I'm ...
1
vote
2answers
50 views
Getting the properties of a parameter object
Hi I am just learning reflection and I am attempting to read the the parameters on the actions in controllers that are decorated with the attribute T4ValidateAttribute.
Lets take an example:
public ...
0
votes
5answers
106 views
Is reflection helpful?
Sorry for the title...
I have a method like foo() used as shown below
public static <T> void foo(T fld1, T fld2) {
// here i use some info from fld1 and some from fld2 in order
// to ...
0
votes
2answers
41 views
Run static method with out parameter using reflection
I have a simple static method that does not contain out parameters, returns anything or takes any arguments. I run it this way:
Assembly assembly = ResourceConfig.GetAssembly("IntegrationServices");
...
1
vote
0answers
19 views
Error when using source of Servicestack instead of dll
I'm trying to use the source of the ServiceStack framework to get a real grasp of how the authentication works instead of following the source code.
I started by cloning the master rep of ...
0
votes
1answer
23 views
How to add property-level Attribute to map ColumnAttribute at runtime?
From this question we have implemented the ColumnAttribute association with the corresponding property, but when Linq to SQL tries to map this property to a Column it doesn't work.
Our property and ...
1
vote
1answer
36 views
StackOverflowException when invoking the Invoke method of the MakeGenericMethod class
I'm currently developing OData API based on the WCF Data Service Toolkit Library.
My current problem is happened when a Lambda expression has many operators.
From my experiments ...
0
votes
0answers
18 views
VB.Net - Using reflection to refer to methods outside of classes
I'm trying to create a program that will execute commands by dynamically invoking methods using the name of a sub provided by the user. With help, I've managed to get it working using a dictionary of ...
0
votes
0answers
19 views
Switching between azure/on-prem specific assemblies at runtime or pre-build based on config
I have a wcf web service which could be deployed to azure or on-prem.
I am trying to have a common code base for both scenarios but with different web.config for each sceanrio.
The problem is that ...
0
votes
0answers
23 views
Converting a runtime Class to Constructor Code, how does the VS designer do it - Can this be improved?
I'm attempting to reverse convert an object to a constructor Code-wise similar to how the Designer does it in VS2010.
Example: Font Object Properties
Name:Microsoft Sans Serif
Size:9.75
Unit:Point
...
2
votes
4answers
47 views
How to refer a class field by metainfo (just like a .class)
I dont know many things about java reflection but is there a way (or if not why not) to refer a class field in java by other than a simple String like
myClass.class.getField ("myField")
and ...
1
vote
1answer
39 views
C# Auto-scaning factory
I there any patterns or internal solutions for solving next problem:
i've got interface ImyInterface(or some baseClass) and Attribute myAttribute.
I need a factory class, that provides me ...
0
votes
7answers
78 views
java: is it more efficient a switch or a reflection?
From a jsp I get a string that I could use for a switch
switch(value)
case 0: method0(); break;
case 1: method1(); break;
...
or for a reflection:
c.getMethod("method"+value, parameter);
...
...
0
votes
1answer
16 views
JSR 303 Cross field Validation by defining custom constrains: performence issues
I have a composite bean which includes inner beans and some of these inner beans also have inner beans. This composite bean have total 200+ properties (properties of this bean + properties of inner ...
1
vote
2answers
68 views
C# : Is it possible to initialize exception of the same type when some instance of exception is passed in?
I want to prevent all exceptions thrown by referenced libraries from escaping my library. I am doing this by filtering all functions through try catch which wraps exceptions if they are not ...
2
votes
1answer
61 views
Convert Java Object (that is really a Scala Map) to Scala Map
Have a compile time task I need to run using reflection (bother caller and callee are Scala source files), but am getting a runtime error:
java.lang.ClassCastException:
...
0
votes
1answer
56 views
dynamic method and the MethodAccessException
given the following classes:
class SomeBuilder<T>
{
public static object Build(int index)
{
...
}
}
class SomeHelper
{
public object GetBuildObj(object value)
{
...
1
vote
1answer
63 views
ClassCastException when try to use loaded class
Java Version: 6
I have build an aotuloader which loads Classes out of a JAR and instances them. SO i get an ArrayList of all Instances which match to the specific path and Abstract Class.
package ...
1
vote
0answers
12 views
creating object using reflection in windows appplication
I want to send a function 2 parameters.
1. Type of class
2.Name of object.
In the new function I want to create the object by the type and the name that was given.
for example:
private void ...
0
votes
2answers
48 views
How does the Java Class class getMethod function work?
I'm studying this code about Java Inheritance(from Core 2 java bk by Hoffman), and here's a code in the class MethodPointerTest.java :
Method square = MethodPointerTest.class.getMethod("square", ...
1
vote
0answers
41 views
After ILMerge Assembly.GetAssembly and similar throw ReflectionTypeLoadException
i use ILMerge via code, using the following snippet to get my merged .exe (Windows Console Application)
var ilMerge = new ILMerge();
ilMerge.SetInputAssemblies(files);
ilMerge.OutputFile = ...
-1
votes
0answers
53 views
Modifying a class in OSGi on runtime and reload
I developed an activemq application and mapped the single components into different osgi bundles. So there is a broker-bundle, a custom-made service bundle for the broker, producer-bundle, ...
0
votes
0answers
15 views
Adding ServiceContract/OperationContract at runtime
I am trying to write an small piece of code that makes existing interfaces (and their implementations) usable with WCF.
I am looking forward to a way in which I can add the ServiceContractAttribute ...
1
vote
0answers
16 views
Using Cecil, how can I verify if a method is called inside another method
I tried to find an example of this but without success so that's is why I asked this question.
Lets start with some code. Here's my code:
class Dummy
{
public void DoDummyThings1()
{
...
1
vote
2answers
17 views
Scalably add classes for instantiation in a jar
I need some advice on a paradigm to follow. Before, I had something like this
package/Instantiator.class
package/instances/GenericInstance.class (abstract)
package/instances/AInstance.class ...
0
votes
2answers
80 views
Cast List<object> to unknown T[] using reflection
I found something similar on another question but i couldnt solve my problem as i'm still quite new in c#.
i have
System.Type type; // for example int[]
System.Type elementType = ...
0
votes
0answers
14 views
Accessing a list of defined preprocessor directives using reflection
I'm trying to implement a decent system for enable conditional compiling of logging methods. I'd like to enable/disable calls to log functions on a per-class or per-group selection.
I know there how ...
1
vote
1answer
33 views
Use Scala's reflection API for dynamic factory class instantiation
I am new to the Scala reflection capabilities. I was wondering if it possible to build a factory object that delivers instantiations of different classes according to a type-parameter.
The code below ...
0
votes
1answer
33 views
Event subscribed using reflection not firing
I have this code:
var listProperty = typeof(WebserviceUtil).GetProperty("List" + typeof(T).Name);
var mainList = (ObservableCollection<T>)listProperty.
GetValue(WebserviceUtil.Instance, ...
0
votes
2answers
83 views
Create a class dynamicaly in c#
Can I create a dynamic class at runetime, withot knowing the fields name of the class beforehand?
For example, if I let the user entre a list of strings, and when he sends the list, I create a class ...
0
votes
2answers
48 views
Change a property name at runtime
Can I change the field of a class at runtime in c#?
for example, if i have the class:
public class ExampleClass{
public string Name;
}
can I Change it at runtime, using reflection or other ...
2
votes
2answers
45 views
Arrays sharing memory in .NET4.0 - is that possible with reflection or StructLayout?
I have huge transient arrays created rapidly. Some are kept, some are GC-d. This defragments the heap and the app consumes approx. 2.5x more memory than it would truly need resulting ...
-2
votes
4answers
77 views
Print object's List<> property value C#
I have an object type of e.g.:
Class
{
public string Variable {get; set;}
public List<AnotherClass> ListVariable {get; set;}
}
AnotherClass
{
public string Variable {get; set;}
public ...
0
votes
2answers
60 views
Use Java Reflection to find sum of parameters from list of objects
I have a list of Items...
public class Item implements Serializable {
private Double subTotalCash;
private Double subTotalCredit;
private Double totalShipping;
private Double grandTotal;
...
1
vote
1answer
45 views
How to create an object that belongs to the same class as a given object
In Ruby, I can do something like:
object2 = object1.class.new
Can I do the same thing in Java? Is this pattern called reflection?
1
vote
1answer
22 views
how to use reflection in php to deal with non-existant items when using the amazon advertising api
I'm not sure how to deal with this, here is a snippet of my php code:
$myTitle = $_GET['Title'];
$myAuthor = $_GET['Author'];
$response = ...
0
votes
2answers
38 views
Dynamic instantiation of Scala Enumeration
Is there any way to dynamically instantiate an Enumeration#Value in Scala?
So far I have:
object Letter extends Enumeration {
val A,B,C = Value
}
// fieldType is of type Universe.Type for the ...
0
votes
1answer
19 views
Load service from APK with android:exported=false
I'm tying to load a Service from an APK, which is located at /system/app/LALA. The thing is, i'm getting the error below, because in the APP AndroidManifest, the Services has android:exported = false. ...
