Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.
4
votes
2answers
87 views
Setting the value of properties via reflection
I am working on an application in which I have to parse an XML file. Nodes of the XML file corresponds to an object. I have to populate the properties of the objects at run time. The code below ...
0
votes
0answers
19 views
Generic Razor view Model property validation for Form
I have run into instances where someone would add columns to a table in the database, update the Entity Framework models for our solution, but forgot to update the forms to compensate for the added ...
5
votes
1answer
52 views
Generating controls based on PropertyInfo
This is a class that takes a PropertyInfo and makes a Control for it. You can access the value of the control through a property on the class called Value. ...
6
votes
1answer
46 views
Getting all public constants from the main and nested classes
I wrote this recursive function to get all constants from a class and its subclasses. Can it be simplified?
...
2
votes
0answers
51 views
Project Euler: Autorun problems
I've found that it's a huge pain to have to write the boilerplate code for each Project Euler problem I write (timing code, main method, what about running every problem instead of just one?). So I ...
5
votes
0answers
55 views
Dynamic data object generation
Last weekend I had an idea: Why not remove dozens of classes by removing all the basic get/set/equals/hashCode implementation of my data object interfaces? I tend to code against interfaces, so I ...
4
votes
2answers
2k views
Ruby Fibonacci(n) recursive computation optimized with reflection
The idea is to take the common-known (and awfully bad performing) Fibonacci(n) recursive method:
...
5
votes
2answers
3k views
Transform DataReader to List<T> using reflections
I have implemented the code to convert datareader to list of objects. My intention was to not to use column name string literals while reading the datareader.
...
1
vote
4answers
73 views
Python Decorator - inspecting function argument values
Some of my functions use a "fail_silently" flag. It is used in the following way:
...
1
vote
1answer
738 views
Lazy loading with __get
I have my own PHP MVC framework that I'm iteratively developing (i.e. adding a feature when I have the time). I'm trying to keep it to the best practices I can, while still adding the most in terms of ...
4
votes
2answers
112 views
Type Name or Alias via Reflection for TT Code Generation
I was working on some TT code generation to get rid of mundane C# codings in VS2013 Express Edition, and after researching online, created the following helper methods to facilitate Type declarations.
...
3
votes
2answers
216 views
Set Game State from String
Before I used reflection to invoke a state based on the string. It looked like this.
...
5
votes
2answers
113 views
Recursively merge dictionaries with generic types in C#
I am looking to implement a method that is capable of merging 2 dictionaries using generics. I've seen several great answers on SO already, but none handle the case of nested dictionaries. As in, what ...
1
vote
0answers
281 views
Retrieving Primary Key from Entity Framework entity
Entity Framework (version 6) generates classes based on your tables that look like this (where each property represents a field in the table):
...
6
votes
1answer
214 views
JSON serializer using generics rather than System.Object
I recently created a custom static class in C# to encode, hopefully, any object it is given (or collection of objects), because I was, at the time, unaware of a native C# library that did the same ...
2
votes
1answer
417 views
Java reflection: Inject data generically and safely
I have become interested in reflection and I wrote a class to wrap an Object so that I can access its private instance fields. The code works great. I do not need to wory about the exceptions in the ...
4
votes
1answer
71 views
Porting a web-based POS system to Android
I'm currently porting a web-based POS system to Android. The Android version uses NavigationDrawer to navigate between menus.
What I need a code review on is my ...
10
votes
2answers
323 views
Optimize a generic foreach method that converts Datatable to my object using Reflection
I need to optimize this code block below, this method converts a Datatable object to the Object that I am passing by parameter, in another words, this serializes the object, however I have to run this ...
2
votes
3answers
120 views
Property Mapping with Reflection efficiency
I have an object that I am populating via mapping and lookup with Reflection:
...
2
votes
2answers
55 views
config.properties, Static Classes and Reflection
I wanted an opinion about an idea I had regarding the use of config.properties, static classes and the use of reflection.
I have to load some preferences at application startup, for that I will be ...
6
votes
2answers
158 views
Building in the built-in declarations
In order for Rubberduck to be able to "recognize" the built-in VBA functions, procedures and objects, I added yet another constructor parameter to my Declaration ...
5
votes
2answers
229 views
Evaluating algebra expression using an auxiliary VB class compiled on the fly and consumed in a C# project
I want to create algebra evaluator but I don't want to write my own parser because it takes much time to learn.
I don't like algebra expression in C# because it does not look natural compared to VB ...
4
votes
0answers
157 views
Leverage C++ Type Inference and basic Reflection library
I've finished my fist iteration on a type inference and basic reflection library for C++, which is part of a small game engine I'm writing on my spare time. It features type instantiation by name/id ...
2
votes
1answer
80 views
Implementing transaction method with invoking business methods in a one transaction
Because the ambient transaction isn't supported with informix, I pass the transaction and the connection through my methods.
I ...
1
vote
0answers
59 views
Using interface for generated functions or just create plain functions
I was wondering which code might be better. I'm abstracting away the rote code as follows:
...
5
votes
2answers
453 views
Java MVC model for large scale GUI using annotations
I'm trying to make a good MVC model using annotations, which I will use it in a large scale GUI project. I want to respect the maximum of rules and guidelines, and be able to decorrelate every parts ...
6
votes
3answers
189 views
Avoid static initializer for lists of image and video formats?
I wrote the following code to read constants from annotations:
...
8
votes
2answers
262 views
Generic queries and handlers without reflection
I'm trying to implement generic queries and handlers so that I can make requests with simple syntax, like this:
...
3
votes
2answers
90 views
Validator part 2
This is a follow up to:
Validating individual properties and whole items
I have a custom class I've written which allows me to validate
individual properties of items, without firing validation ...
2
votes
0answers
41 views
'Tag' packages and make them discoverable
We have another team who is going to expose class packages for use to scan and pickup details from. If they should add some new packages or rename old ones I don't want to have to recode a thing. I am ...
6
votes
1answer
423 views
Basis of custom C++ serialization lib
I know it's been done a million times already, but I couldn't find a serialization library to suit my needs. This is the very basis of what I came up with. I know the code is ugly and unstructured, so ...
2
votes
2answers
83 views
Function caller (to multiple receivers) interface
This class is designed to call a similar function of multiple objects of multiple classes using a single interface (it is not for calling functions that return a value).
A potential usage will be ...
6
votes
2answers
7k views
Check if any of class properties is not null/empty/was assigned
I have a class that I use to display on a web page fieldset. However, all of the properties of this class are optionally filled in by the user, which means all of them could be null/default. In this ...
2
votes
1answer
208 views
Speed problems with SetValue, ToType and Reflection
I have a 'speed problem' with a program I'm currently developing. I already have encountered the methods which costs some time.
...
4
votes
2answers
87 views
Reflection and Project Euler
I have made a Project Euler runner in order to facilitate the running of the various problems. I have never used reflection before, and I believe that I have found a good use for reflection within ...
4
votes
1answer
548 views
Speed problems with SetValue, ToType and Reflection
I have a 'speed problem' with a program im currently developing. I already have encountered the methods which costs some time.
...
5
votes
1answer
115 views
Autowiring publishers/listeners with reflection in Unity Framework
I'm currently building an application with the Microsoft Unity Framework. I also use a simple system of message publishers/listeners inspired from MVVM light and caliburn:
The listener interface
...
5
votes
2answers
290 views
Loading data into a number of different typed List<T>s: Can I do without reflection?
I'm not sure whether my distaste for reflection is justified or not, but it feels ucky that I'm using reflection here.
I'm trying to make a very simple class which has a number of ...
7
votes
2answers
139 views
Action based controller using reflections
I'm modeling a reflection-based controller. I would like to know if you agree with my implementation and about what could be enhanced.
I'm starting with reflection and I would like to know if I'm ...
6
votes
1answer
5k views
A generic way to use LINQ to Entity with types and operations unknown until run time
A question was asked here about reflection and LINQ to entity. I'm trying to modify the code that was presented to fit my needs.
Here's what I am trying to accomplish: I'm writing back-end support ...
5
votes
3answers
1k views
6
votes
2answers
1k views
Using Reflection to Initialize Instance Variables
I'm facing the issue of how to reconstruct data across a network in Java. As part of my Component based game engine (read about it here, I have to encode components as XML on the server, send it to ...
6
votes
2answers
139 views
My EventBus system followup
This question is a followup from my previous question My EventBus system, and incorporates most points from @rolfl's answer.
It includes, but is not limited to:
Usage of ...
7
votes
1answer
120 views
My EventBus system
I decided to roll out my own EventBus system which is intended to be thread-safe.
Hence a review should focus extra on thread safety apart from all regular concerns.
The ...
6
votes
5answers
327 views
Initializing JTree
I have a class called Piece, and many many subclasses of Piece. I want to add an instance of every single subclass of ...
6
votes
1answer
3k views
Variadic macro enum class “reflection” in C++11
I recently had the need of "reflecting" multiple enum class constructs in order to get their elements' names as std::string ...
10
votes
2answers
1k views
Override equals() and hashCode() using reflection
I wrote a utility method to override equals() using reflection. This works fine, but I wonder if this code will pass all the tests.
...
3
votes
1answer
254 views
Method to lookup persistent entities by an example object
i'm currently writing a generic data access object for the persistent entities I have to handle in my JavaEE application. What this codeReview is about is a findByExample method that is used to find ...
4
votes
2answers
187 views
comparing objects; optimize code short of using reflection
I'm comparing two distinct instances and if they are not the same I save to the dB, so I've given snippet of code below of the way I am comparing these instances, I realize I could use reflection and ...
5
votes
1answer
84 views
Setting up keyboard bindings using JSON and reflection
My game uses configuration files in JSON format. One of them is used for setting up control bindings, and it looks like this:
...