0
votes
3answers
24 views
Java static reflection on subclasses
Hi all. I am implementing a sort of ORM in Java. I am trying to do a static find method that is only in the parent class. Let me get to the point:
public class DB {
public stati …
0
votes
2answers
27 views
How to find function parameters
I need to log all the function parameters in a dozen functions.
Is there a way to pro grammatically determine all the parameters and their values (or at least their .ToString() va …
2
votes
2answers
64 views
Accessing private variables in Java via reflection
I'm trying to write a method that will get a private field in a class using reflection.
Here's my class (simplified for this example):
public class SomeClass {
private int …
3
votes
3answers
46 views
Determine if reflected property can be assigned null
I wish to automagically discover some information on a provided class to do something akin to form entry. Specifically I am using reflection to return a PropertyInfo value for each …
0
votes
4answers
51 views
Serialization of Method object in Java is possible?
I'm getting this error when I try to serialize a Method object.
java.io.NotSerializableException: java.lang.reflect.Method
Any Idea?
1
vote
4answers
69 views
Multi-Dimension length array reflection java
How do I find the length of a multi-dimensional array with reflection on java?
2
votes
5answers
94 views
Java reflection: What does my Collection contain?
Hi guys,
I've defined a method in a class:
public void setCollection(Collection<MyClass>);
and in another class
public void setCollection(Collection<OtherClass>);
…
1
vote
4answers
74 views
Java Reflection not working on my system - working for team members
I am working on a team project in Java. One requirement is that we dynamically populate a drop-down menu of all classes that implement a certain interface. New classes can be added …
0
votes
1answer
17 views
Dynamically implement interface in Groovy using invokeMethod
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I want to dynamically implement an Interface on a Gro …
0
votes
2answers
42 views
Call method of the derived class through reflection. Possible or no?
Hi!
I have a follwing class structure:
public abstract class AbstractFoo
{
public virtual void Prepare()
{
}
}
public class Foo : AbstractFoo
{
public override vo …
0
votes
2answers
40 views
Building core shop framework in Rails. Suitable or not?
I work at an in-house IT department for company running 10 or so only shops of varying complexity. The shops code has been written over the last 8 years, each shop a new branch gro …
4
votes
7answers
71 views
What’s the use of having private properties if you can alter them with reflection?
I know it sounds like a stupid question, but how safe is your API if you can access private properties and change them?
1
vote
2answers
28 views
How can I tell if a javascript object is an Image or a Canvas?
I have a class with a property that can be an Image (i.e. an IMG element) or a Canvas. When I serialize it to JSON, I need to convert this to a text string. If it is a Canvas, then …
0
votes
4answers
76 views
Hiding Public Functions
Hi,
This is a fairly generic question in that I'm just wondering what potential options there are for this.
Say, I have a simple class:
Public Class Example
Private _O …
2
votes
2answers
49 views
AS3 reflection. How to find out if a method is overridden?
Is it possible to use AS3 reflection to find out if a method was overridden?
I need a method like:
protected function isOverriden(methodName:string) : bool
{
//magic here!
…
