The class-reference tag has no wiki summary.
-2
votes
3answers
66 views
Referencing a class programatically in PHP
I receive an object during some process and this object needs to figure out its coloring scheme.
For example, I have a coloring scheme that is stored like this:
class FirstScheme {
public static ...
0
votes
1answer
38 views
[C++]Intellisense Reports Class Reference of Type <Error-Type>
I have been trying to fix this problem for a few weeks now but nothing I have done has fixed it. This seems to be a problem with the Intellisense information not being updated in a .cpp file.
The ...
0
votes
2answers
128 views
Are there metaclasses or class reference in D?
Are there any system of classe reference in D? To be more accurate I look for the equivalent of the Delphi
TMyClassRef = class of TMyClass;
This would be used for a factory (just like in the Object ...
1
vote
1answer
197 views
ProGuard didnt compile with Joda Time used in Windows
Actually this is an answer and not a question anymore:
I did spent many hours on Windows using JodaTime to be included in my Android project using ProGuard
Proguard Configuration:
-libraryjars ...
3
votes
2answers
31 views
Reformulated previous status 3 query
Ok, reformulated and consolidated from C++ Process terminated with status 3 confusion to a single file with minimum code, replacing my 'log' references with 'cout', printing to console instead of to ...
1
vote
0answers
77 views
Class 1 as Interface, Class2 Listener have to do something in Class 1
Actually i'm playing a bit with Java to learn more about it.
I have a Class that is used as Main-Interface where I add some other Classes (some more GUI Elements)
public class JfrmInterfaceMain ...
0
votes
0answers
61 views
How to add a class generated by a code generator to a project after WinForms project builded in C#?
I got a code generator creates .cs files from .xsd file and I want to add it to my WinForms C# project after project builded. Is that possible?
The main reason of that in each version of xml ...
0
votes
0answers
71 views
remove classRef as3
I was wondering if it's possible in as3 to remove a classRef which has been part of an array from library items.
I am trying to work on an array which on Click loads a movie related to the section ...
0
votes
2answers
129 views
Determine Class Associations using Reflection
I am working on a solution that extracts all the class associations between each other. If we click a class in the object browser we can see the option Find All References. I want something similar ...
0
votes
0answers
103 views
generation summary from class reference (xml document)
I have xml documentation file for a project. how i can move summary from xml file into source code programmatically?
Update:
I have xml documentation file for my assembly:
<?xml ...
2
votes
4answers
10k views
Objective-c, how to access an instance variable from another class
I am used to programming in Java and to use class variables to access data from other classes. Then I found out that class variables does not work the same way in Obj-C, and are having problems with ...
3
votes
1answer
199 views
Test if class from a class reference (metaclass) variable is TMyClass
I want to know whether the object that would be created from a class reference is an instance of a particular class or any of its descendants.
In other words, I want a Boolean expression such as
var ...
0
votes
2answers
2k views
IOS Dev Library offline on you mac
I need a offline version of http://developer.apple.com/library/ios/navigation/
Does something like this exist? thank you
6
votes
6answers
11k views
Unknown class in Interface Builder file
I created a fairly simple iPhone app. Then figured I'd create an iPad version (Universal) of the app. Tried using the 'upgrade' option and that didn't work-out. So I created a separate universal ...
9
votes
5answers
2k views
Delphi class references… aka metaclasses… when to use them
I've read the official documentation and I understand what class references are but I fail to see when and why they are best solution compared to alternatives.
The example cited in the documentation ...