Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
125 views

What is the advantage in using `exec` over `type()` when creating classes at runtime?

I want to dynamically create classes at runtime in python. For example, I want to replicate the code below: >>> class RefObj(object): ... def __init__(self, ParentClassName): ... ...
5
votes
6answers
436 views

Best way to dynamically create classes instead of using a switch block

Currently I have my VaryByCustom functionality implemented in classes that implement an interface IOutputCacheVaryByCustom public interface IOutputCacheVaryByCustom { string CacheKey { get; } ...
4
votes
3answers
1k views

Python: dynamic class generation: overwrite members

I have a python class hierarchy, that I want to extend at runtime. Furthermore every class in this hierarchy has a static attribute 'dict', that I want to overwrite in every subclass. Simplyfied it ...
4
votes
6answers
243 views

Java: Strong Code mobility How to?

Does anyone know how to use Java for Strong code mobility? Have you ever done it before? Here's what I try to achieve. Suppose we have 2 separate Java applications that communicate over network. App ...
3
votes
3answers
162 views

how to dynamically create a component in delphi such as TLabel or TEdit …etc

Using Delphi 2010 SQLQuery1.First; // move to the first record while(not SQLQuery1.EOF)do begin // do something with the current record // What's the code should i write in this part in order ...
3
votes
3answers
93 views

java generics vs dynamically loading class using Class.forName()

Assume I am making a class called Government. Government has members like officers, ministers, departments etc. For each of those members I create an interface, and any specific government defines ...
2
votes
3answers
174 views

CSharp: How do I dynamically call a class(with constructor) and it's methods?

I've been reading examples of Reflection for two days and I can't quite seem to piece together everything to fit what I need. In fact I thought I was using reflection, until I noticed my "using ...
2
votes
4answers
65 views

What frameworks/languages support run-time class creation?

I'm trying to put together a list of frameworks/languages support run-time class creation. For example in .NET you can use the System.Reflection.Emit library to emit new classes at run time. If you ...
1
vote
3answers
435 views

AS3 - Parametrized Factory method using actual class name

Rather than use a hard-coded switch statement where you pass it the string name of a class and it then instantiates the appropriate class, I'd like to pass the actual name of the class to my factory ...
1
vote
3answers
71 views

What's the term (if any) for frameworks that support dynamic class creation?

Sorry about the vocabulary question, but I'm writing my master thesis and it's a pain to repeat "frameworks that support dynamic class creation" again and again. Is there a term for that? Some ...
1
vote
2answers
282 views

How can I test a .class file was created?

I want to unit test my code which will have to create a .java file compile it and then the corresponding .class file should be created. How can I create the test to see if the ".class" file is ...
0
votes
1answer
24 views

Giving method name instead of concrete class name in Structure map

I have a class ScreenParameter (implement IScreenParameter) that stores all form values in windows form. This class is initiated when user populate all the fields and click the button. The class in ...
0
votes
1answer
53 views

using dynamic python class definition and amfast dynamic class mapping and code generation to generate ActionScript class

I have an xml snippet that contains an object hierarchy: doc = """\ <RootObj val1="ValueOne" stat1="Stat1" stat2="Stat2"> <internalarray type="array"> <InternalObject val1="12" ...
0
votes
1answer
94 views

Selenium Webdriver and Type constructors using Generics - How to do it

What's the best way to use the PageFactory design with selenium 2 webdriver, but when a page doesn't always load an expected page how can I create the new unexpected page? public class PassengerPage ...
0
votes
0answers
49 views

Runtime DB mapping to class/objects?

Say someone requests the possibility of mapping DB tables to instances in a user interface. How could this be handled and what form could the domain take? Example requested by David: DB Person ...
0
votes
2answers
178 views

php dynamic class inheritance

I know I can generate a class at runtime by executing $obj = (object)array('foo' => 'bar');+ this way I can use echo $obj->foo; //bar What if want to make $obj inherits from an existing ...