A capability of some object-oriented programming languages to determine the type of an object at runtime.
1
vote
2answers
84 views
C++ Introspection techniques, similar to python
Are there introspection techniques in C++ like those in python?
For example: I want to get more information about a specific object without going through the header file or referring back to cpp ...
0
votes
2answers
33 views
How to get the name of the top most (entry) script in python?
I have a utility module in Python that needs to know the name of the application that it is being used in. Effectively this means the name of the top-level python script that was invoked to start ...
1
vote
1answer
27 views
Finding qualified names that reference a given object
For debugging purposes, we want to obtain all the names under which a given object is known; I want qualified names (i.e., A.x rather than x). Here's our first attempt:
import gc, sys
def ...
0
votes
1answer
54 views
Obj-C introspection: How can a method reference arguments it's called with
This is an intentional "fork" of the question:
Obj-C introspection: How can a method reference its own selector?
I need to do the exact same thing as the OP, but whereas he didn't need to pass any ...
1
vote
3answers
37 views
What happens to a block at compile time, and can I create one at runtime?
This is a two-part question about blocks (^{}) in Objective-C. I have searched for some answers, but nothing has showed up in Google or SO. This question stems from a desire to create an custom XML ...
1
vote
2answers
46 views
Obj-C introspection: how to avoid casting all the time?
Hello all,
I've been working on some enumeration routines in Objective-C that perform object introspection. In particular, I'm fast enumerating an NSSet and making sure that the objects therein ...
1
vote
2answers
34 views
Can I test code that uses introspection with Mockito?
I'm writing unit tests for a block of code that uses introspection; specifically it calls getDeclaredField() on the class I want to mock and tries to get the value of the field. Is there a way to ...
3
votes
2answers
45 views
Checking at runtime if a class has a specific constructor that is using generics
Hello all :) I'm trying to chose the right constructor in a class. Here is the code:
Constructor[] constructors = targetClass.getConstructors();
Constructor goodConstructor = null;
for (Constructor ...
6
votes
1answer
75 views
Find out if an object is a class object rather than an instance of a class
Using the Objective-C runtime library, how do we find out if an object is a class object rather than an instance of a class?
0
votes
2answers
37 views
How to turn these functions generic
I wanted to shorten my code, since i`m having more functions like this. I was wondering if I could use getattr() to do something like this guy asked.
Well, here it goes what I`ve got:
def ...
10
votes
1answer
155 views
The correct way to override the `__dir__` method in python
This question is meant to be more about __dir__ than about numpy.
I have a subclass of numpy.recarray (in python 2.7, numpy 1.6.2), and I noticed recarray's field names are not listed when diring the ...
1
vote
1answer
17 views
Introspector finding properties that no longer exist
I'm relying on introspection for XML processing in a Java EE 6 app I've been working on for quite a while. So far it has worked just fine. However, I had to rename a property setter name. The problem ...
6
votes
1answer
155 views
How to identify mutable objects? [duplicate]
In my application, at some point, I need to identify mutable objects to handle them appropriately. This turns out to be more difficult than it seems.
If I use isKindOfClass:[NSMutableString class] on ...
1
vote
2answers
31 views
Get the docstring from a frame object
I use the following code to get the caller's method name in the called method:
import inspect
def B():
outerframe = inspect.currentframe().f_back
functionname = outerframe.f_code.co_name
...
0
votes
2answers
51 views
java introspection to find member of the class
I'm trying to access the attribute of an Object object through its name memberName.
I tried:
new PropertyDescriptor(memberName,object.getClass()).getReadMethod().invoke(object);
It works well for ...
-3
votes
2answers
53 views
I want Function names from the python piece of code that i wrote . i want to get the name of the function to send it for parallel processing [closed]
I want Function names from the python piece of code that a user could have written and uploaded. i want to get the name of the function because i have to send it for parallel processing
# ...
0
votes
6answers
78 views
Given a Collection get the type of the items (Java)
I need to get the type of the item of a collection.
For retrieving the class of a single instance I use the following code:
classUnderTest.getName()
But, how can I retrieve the class of the items ...
1
vote
1answer
66 views
Accessing original decorated function for test purposes
I'm using a decorator(@render_to from the django_annoying package) in a view function.
But the thing is that I wanted to get the original dict that is returned by the view function for test purposes, ...
0
votes
1answer
21 views
How to get the name of an class statically in php? [duplicate]
With this code:
<?php
class a {
public static function type() {
echo get_class();
}
}
class b extends a {
}
echo b::type();
It outputs a. I would like the name of the calling class: ...
0
votes
1answer
57 views
Introspection of a Map
I am trying to develop some utility code which is portable to both the J2SE and the Android platforms for the caching of objects. The plan is to extract an abstract class when I get it working, but ...
1
vote
2answers
69 views
Flask: Get URLs for each View class in module
I'm trying to build a list of all urls and their respective View or MethodView classes. Each View may have 2 or more urls. I'm not sure whether to do this by starting at the class end, or the url map. ...
3
votes
1answer
108 views
How to check whether a variable is declared in D?
How do I check whether a variable exists, i.e. is already declared in D?
The background is that I want to use version conditions but still have a default value:
version(A)
{
immutable int var = 1;
...
4
votes
1answer
106 views
Is there a way to declare function parameter types in R?
If one has a function declaration in a package. Parameters are declared without type which could be figured out only in run-time, when the function is called.
Is there a means to describe R function ...
0
votes
1answer
129 views
Python / PySide / Qt: Find out a signals name inside a slot
Using the pyside qt binding module inside a small python 2.7 project I want to find out the source of a signal. So inside a slot I want to have some means to ask by what signal this slot has actually ...
0
votes
3answers
279 views
Convert object's properties and values to array of key value pairs
I'm fairly new to JavaScript and am not sure this is possible to do but basically I would like to take an object and convert it into an array of strings in the format; array[0] = 'prop1=value1'
The ...
0
votes
2answers
108 views
“Cannot be cast to java.lang.Class”, namely: which type is not a class
This may seem a dumb question (as it could be very project specific) but in this case it's general enough:
I'm running a piece of code which gives the ClassCastException, with the error message I ...
1
vote
2answers
72 views
Is it possible for a callee to force its caller to return in python?
Is it possible for a callee to force its caller to return in python?
If so, is this a good approach? Doesn't it violate the Explicit is better than implicit. sentence of the Zen of Python?
Example:
...
0
votes
2answers
66 views
How can I create a new object of the same class as an object I already have?
I've an array which holds different kinds of objects: UIButtons, UILabels, UITableViews, etc.
Is there any way that I can dynamically create these objects while looping through the array without ...
1
vote
0answers
46 views
Minimal implimentation of Gtk.Clipboard not functional
I am trying to get a minimal implementation of Python3/GTK3's clipboard working. It will work if and only if I run Gtk.main(). I have even tried a :
While Gtk.event_pending():
...
0
votes
2answers
175 views
Importing Gtk object from gi.repository
Back in my GTK2 days, I could do a
from gtk import Clipboard
To get access to the clipboard from my program.
Now days, we must import objects introspectively as in:
from gi.repository import Gtk
...
2
votes
1answer
68 views
SQLAlchemy relationship introspection
I have two mapped classes with a one-to-many relation:
class Part(...):
product = relationship('products', backref=backref('parts'))
class Product(...):
pass
Given Part.product, I can ...
3
votes
1answer
229 views
what's the biggest difference between dir and __dict__ in python
class C(object):
def f(self):
print self.__dict__
print dir(self)
c = C()
c.f()
output:
{}
['__class__', '__delattr__','f',....]
why there is not a 'f' in self.__dict__
0
votes
2answers
142 views
How could I check for a particular property at runtime, along with its return type?
Since property named "age" would always have a selector named "age" as well, I could use respondsToSelector as this question suggests and that will tell me if a particular selector exists at runtime ...
1
vote
1answer
103 views
Is there a way to get the parameter's class type from a Method struct?
There is a method like this.
- (void)method: (CustomClass)param;
CustomClass inherits from NSObject.
I have a variable m below, which is the Method struct for that method.
I invoked ...
3
votes
1answer
64 views
Creating dynamic ABC class based on user defined class
I'm writing an plugin framework and I want to be able to write a decorator interface, which will convert user class to ABC class and substitute all methods with abstractmethods. I cannot get it ...
2
votes
1answer
92 views
Python3: check if method is static
Simmilar question (related with Python2: Python: check if method is static)
Lets concider following class definition:
class A:
def f(self):
return 'this is f'
@staticmethod
def g():
...
3
votes
2answers
112 views
Getting class reference from function in Python
I'm writing a python (3.2+) plugin library and I want to create a function which will create some variables automatically handled from config files.
The use case is as follows (class variable):
...
-1
votes
1answer
126 views
Can't run Spring 3 based web application on WebSphere?
I have a web application which is based on Spring 3.1.1. It runs perfectly fine on Apache Tomcat 7.0. However, when I run it on, IBM WebSphere Application Server V7.0, I am receiving an error:
...
0
votes
1answer
70 views
Python Introspection: Defining dynamic class methods during runtime
I'm trying to create a unit test, that checks that every function in mymodule has its own TestCase instance.
To reduce boiler-plate code and manual effort I wanted to use introspection/reflection to ...
2
votes
1answer
121 views
How to implement introspection on RealBasic?
RealBasic's Introspection is kinda of different than what I expected.
My intention is:
Create a MainObject from which other objects will inherit two, three methods, to simplify.
Method 1-> ...
0
votes
1answer
167 views
Get PHP class namespace dynamically
How can I retrieve a class namespace automatically?
The magic var __NAMESPACE__ is unreliable since in subclasses it's not correctly defined.
Example:
class Foo\bar\A -> __NAMESPACE__ === Foo\bar
...
7
votes
4answers
110 views
In python is there a way to know if an object “implements an interface” before I pass it to a function?
I know this may sound like a stupid question, especially to someone who knows python's nature, but I was just wondering, is there a way to know if an object "implements an interface" so as to say?
To ...
6
votes
2answers
160 views
Detecting empty function definitions in python
I need to detect whether a function is an empty definition or not. It can be like:
def foo():
pass
or like:
def foo(i, *arg, **kwargs):
pass
or like:
foo = lambda x: None
What is the ...
0
votes
1answer
101 views
django - having model class how to get list of all fields, their types and parameters passed?
lets assume I have following model:
class Note(models.Model):
user = models.ForeignKey(User)
pub_date = models.DateTimeField()
title = models.CharField(max_length=200)
body = ...
0
votes
1answer
62 views
How to introspect Java Web Start GUI Application?
There is an Java Web Start GUI Application. As I understand it is based on Swing. So the question is how to make an introspection in that application? Is there any way to accomplish that? For example, ...
4
votes
2answers
451 views
Watch for a variable change in python
There is large python project where one attribute of one class just have wrong value in some place.
It should be sqlalchemy.orm.attributes.InstrumentedAttribute, but when I run tests it is constant ...
0
votes
0answers
43 views
Why does phpsh not show structured information about variables?
I have just installed phpsh shell as described here: http://vocecommunications.com/blog/2010/12/how-to-setup-an-interactive-wordpress-shell/
Normally, the shell should show introspection of returned ...
1
vote
1answer
363 views
Bean introspection in Java [closed]
I'm learning for a job interview in Java.
They told me to learn the concepts of Beans introspection, so I searched the web and
read in a couple of sites including the next posts:
Java introspection ...
0
votes
2answers
134 views
Simulating C++-typedefs in Java
Can typedef FooBar Bar; and the access to the type FooBar through the expression Foo::Bar in the code
#include <typeinfo>
#include <iostream>
class FooBar {};
class FooBat {};
class Foo
...
3
votes
2answers
99 views
Validation against NumPy dtypes — what's the least circuitous way to check values?
I want to test an unknown value against the constraints that a given NumPy dtype implies -- e.g., if I have an integer value, is it small enough to fit in a uint8?
As best I can ascertain, NumPy's ...


