Tagged Questions
The metaobject tag has no wiki summary.
7
votes
2answers
4k views
How do I get the type (class) of a property of a Grails domain object?
I'm trying to dynamically create domain objects in Grails and encountered the problem that for any property referencing another domain object the metaproperty tells me its type is "java.lang.Object" ...
2
votes
1answer
226 views
Does Ruby have a Metaobject protocol and if not, is it possible to implement one?
Pardon my ignorance, but What is a Metaobject protocol, and does Ruby have one? If not, is it possible to implement one for Ruby? What features might a Metaobject protocol possess if Ruby was to have ...
0
votes
2answers
46 views
Calling method with array or arguments using QueuedConnection
I want to call arbitrary slot of QObject in other thread.
I have:
| Arguments: | Can use QueuedConnection?
QMetaObject::invokeMethod | fixed number | YES
...
0
votes
2answers
96 views
Is it possible in Qt to unit test (access) private methods?
I'm writing unit tests for my app, and now I've stumbled on a class in which I should test private methods. This could be result of poor design of particular class, but I must do it. Is there any way ...
0
votes
2answers
261 views
QMetaObject Compiler explain?
I am trying to know how Qt implements meta object compiling which enables them to provide signal slot mechanism in Qt. I am not able to finding much details in the documentation.
EDIT::I am not able ...