Tagged Questions

1
vote
1answer
26 views

Can objects created with .net reflection be serialized?

Is it possible to serialize an object that is created through reflection? I get an error of "Unable to cast object of type 'testNameSpace.ScreenClass' to type 'testNameSpace.ScreenClass'" when …
0
votes
5answers
85 views

Call a function based on JVM version.

I have a JFrame object, and i need to support two JVM 1.5 on Mac OS X and 1.6 on Windows. On windows I need to use setIconImages function to set multiple icon sized for the application but this …
0
votes
3answers
69 views

Using Reflection to get a variable’s name

I'm using MVVM and within one of my VM's I have an IsEditable property (well they all do from a base class) which is used by a series of buttons to determine whether their commands can fire. This VM …
0
votes
3answers
93 views

Is there an effective way to determine whether .Equals on two different but “equal” instances will return true?

I'm attempting to use reflection to determine the result of a call to .Equals on two different but "equal" instances of a type. My method would be something like: public static bool …
1
vote
2answers
45 views

List all concrete or abstract classes of object

Is it possible in C#, via reflection or some other method, to return a list all superclasses (concrete and abstract, mostly interested in concrete classes) of an object. For example passing in a …
1
vote
2answers
28 views

How can I dynamically create and save a LINQ-to-SQL object via reflection?

The following method creates a linq-to-sql object at run time based on a class name. I can also fill the properties of the item via reflection. But how do I save this object via the linq-to-sql …
1
vote
2answers
36 views

Load and modify AS3 SWF

Is it possible to load an ActionScript 3 SWF and interact with it, for example by replacing some of its functions or editing variables? Similar to how it's possible in .NET using reflection and code …
1
vote
3answers
19 views

Execution-time performance of code in class created using reflection versus a ‘normal’ class.

Is the execution time (run-time) performance of code in a class that is loaded via reflection identical to the same code when the class is created using the new keyword? I say yes. But I was …
0
votes
4answers
173 views

How to convert variable name to string in c#.net?

public new Dictionary<string, string> Attributes { get; set; } public string StringAttributes = string.Empty; public int? MaxLength { get; set; } public int? Size { get; set; } public int? …
3
votes
3answers
78 views

scala reflection: getDeclaringTrait ?

When I research a new library, I sometimes find it hard to locate the implementation of a method. In Java, Metho#getDeclaringClass provides the class that declared a given method. So by iterating …
0
votes
5answers
98 views

Get list of classes in namespace in C#

I need to programmatically get a List of all the classes in a given namespace. How can I achieve this (reflection?) in C#?
1
vote
2answers
70 views

How to get properties from FieldInfo in C#?

Hello, I have this method and want to get all properties from the FieldInfos? How to get it? private static void FindFields(ICollection<FieldInfo> fields, Type t) { var flags = …
0
votes
6answers
73 views

Java: Setting array length for an unknown number of entries

I am trying to fill a RealVector (from Apache Commons Math) with values. I tried using the class's append method, but that didn't actually add anything. So now I'm using a double[], which works fine, …
0
votes
2answers
51 views

Java Reflection: Count of methods with an annotation?

This works fine for filtering out methods with the Analyze annotation: for (Method m : ParseTree.class.getMethods()) { if (m.isAnnotationPresent(Analyze.class)) { What if I just want a count, …
6
votes
4answers
115 views

How does reflection affect Perm size?

I have the understanding that perm size is used to store meta data, that would include byte code, static stuff etc. My question how does usage of reflection affect the perm size, if it ever does. I …

1 2 3 4 5 90 next
15 30 50 per page