Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
8k views

Objective C subclass that overrides a method in the superclass

In Objective C, if you are subclassing something, and are planning to override a method on the superclass, should you re-declare the superclass method in your subclass @interface? For example, if you ...
5
votes
4answers
126 views

Sub-classes, assignment operator overloading?

If I have the given below classes: class TestA { public: const TestA &operator=(const int A){return *this;} }; class TestB : public TestA { public: //Inheritance? }; ...
5
votes
5answers
174 views

coding variable values into classes using R

I have a set of data in which I need to code values of certain variables (numeric) into 3 classes. My data set is similar to this but has 60 more variables: anim <- ...
3
votes
2answers
285 views

Python ABCs: registering vs. subclassing

(I am using python 2.7) The python documentation indicates that you can pass a mapping to the dict builtin and it will copy that mapping into the new dict: ...
3
votes
1answer
404 views

Objective-C subclasses question

I have a class called Level, which is a subclass of NSObject. Then I have a class called Level_1_1 which is a subclass of Level. Is it allowed to type like Level* aLevel = [Level_1_1 alloc]; ...
3
votes
1answer
314 views

JAVA: subclasses, self-learning-test, coursework, homework

HI ALL! As a part of my self-learning of Java I'm trying to complete one of the Java begginer assignments available here (very old stuff - 2001) The problem is that I don't know how to approach this ...
2
votes
3answers
75 views

Java inheritance and subclasses

Java noob here with a quick question. This is the basic layout of a class I will be using. public class Foo{ public static void Method1(){ Method 2(); } public static void ...
2
votes
3answers
396 views

Simple example of JavaScript namespaces, classes and inheritance

I've been asked to port some of our PHP code across to JavaScript, so that more of our logic runs client-side. What'd I'd like is a simple example that shows: a namespace ("Package") containing two ...
2
votes
3answers
269 views

AS3 Reference subClass of subClass from parent without instantiating?

Can I access a static variable of a subClass' subClass? I don't want to instantiate it, just looking to get the variable because it has already been initialized by the subClass. example: package { ...
2
votes
3answers
76 views

JavaScript - Trying to add a prototype from within a prototype

This sounds easier than it should be, but I'm having issues trying to resolve this. My situation is basically, I can create a class that's going to use prototype (example: function exClass() {}). And ...
2
votes
1answer
352 views

Differences in subclasses function between Rails 2 and 3

Let's say I have something like this class Major < ActiveRecord::Base def self.my_kids self.subclasses.collect {|type| type.name}.sort end end class MinorOne < Major end class ...
2
votes
1answer
359 views

Fluent NHibernate - subclasses with shared reference

Edit: changed class names. I'm using Fluent NHibernate (v 1.0.0.614) automapping on the following set of classes (where Entity is the base class provided in the S#arp Architecture framework): public ...
1
vote
1answer
76 views

How can you handle subclassed view events without instantiating every instance in the activity?

In my first MonoDroid app I've subclassed TextView so I can display a border around each view ( Android - Way to appear bordered text on the TextView? ), managed to add it to my layout XML ( Declaring ...
1
vote
1answer
107 views

Core Data inheritance : How To Get Entity Subclasses at runtime?

I got the following Core Data Model : ParentEntity (abstract) ChildAEntity having ParentEntity as parent ChildBEntity having ParentEntity as parent How could I get at run time an Array of my ...
1
vote
3answers
31 views

Determining subclass out of a lot of subclasses Java

I have an interface Tree and an abstract class RBTree which implements this interface. I also have several classes Tree1...Tree9 which extend this abstract class. I've written a test unit where i ...
1
vote
1answer
223 views

Nhibernate / hibernate discriminator in subclass

I have a subclass with a discriminator, can i have another discriminator in a subclass I'll try to explain One discriminator is in Person Table may be type and i have two subclasses Student and ...
1
vote
1answer
57 views

PHP framework class - How to intiate classes via class

I usually setup a initial class on a website called something like baseFrame, which holds all the basics functions. (MVC style) Now, I realized I was having issues calling the baseFrame from classes ...
1
vote
5answers
199 views

Can main classes access child class methods

If I have: class main { //hello } class child1 { function love($v) { } } class child1 { function hate($v) { } } function __autoload($file) { include_once($file . '.php'); } ...
1
vote
1answer
57 views

PHP classses/functions

How do I get the $str variable (below) into my class/classes? The function is used to call each class dynamically rather tan have "lots" of if(class_exists) statements. on page: echo ...
1
vote
1answer
109 views

Deleting objects from template list

I have a template list say, List<SuperClass*>* mList; for(int i = 0;i < mList->ElementsCount();i++) mList->DeleteElementAtIndex(i); in mList objects of subclasses are added. ...
1
vote
2answers
2k views

Accessing MainWindow Properties from other classes

I can modify/access controls and MessageBox with ease in the MainWindow.xaml.cs file of my WPF application. However, when I create some folders and add classes there, I no longer have access to ...
1
vote
1answer
407 views

Error on CLLocation subclassing

I'm trying to make a new CLLocation subclass. This is the skeleton: #import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> @interface JFLocation : CLLocation { } @end #import ...
1
vote
3answers
471 views

Listing subclasses doesn't work in Ruby script/console?

This works: >> class Foo >> def xyz() >> Foo.subclasses >> end >> end => nil >> class Bar < Foo >> end => nil >> class Quux < Bar ...
1
vote
2answers
926 views

C# getting details from subclasses

I'm a complete newbie to C# so excuse me if this looks weird. I have an abstract class called vefHlutir namespace Klasasafn { public abstract class vefHlutur { public abstract ...
0
votes
0answers
61 views

Schemagen to generate the xsd for subclasses

/* Class A */ import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import ...
0
votes
6answers
105 views

C++ Inheritance Issue

I am using code::blocks, with, I believe gcc. Given the example code (this is pseudo code and may not replicate the problem): //Assume this is in a separate header file to B class TestA { ...
0
votes
7answers
89 views

C++ subclasses modular functions

Sorry, I decided to radically update the question given the code was riddled with my errors and didn't convey my point. I wanted to see whether or not the below is viable: Here's an example that can ...
0
votes
1answer
87 views

How can I use reflection in C# to get object value from a member of a class?

How can I use reflection in C# to get object value from a member of a class ? I have: public class Class1 { public int field1; public String field2; } public class Class2 { public ind ...
0
votes
1answer
76 views

Subclasses using any methods from base class module includes?

Let's say I have a base class called Stream and a bunch of subclasses of Stream. class Stream include DateTimeHelper include LinkHelper include FormatHelper def ... ... end end ...
0
votes
2answers
165 views

returning template subclass

I have a bunch of Containers and Objects. The containers and objects have templated subclasses. Those templated subclasses have specialized subclasses. In the specialized objects, I want to ...
0
votes
1answer
194 views

How to make a subclassed, custom Django form field non-required?

The Django docs (http://docs.djangoproject.com/en/dev/ref/forms/fields/) say that you can create a subclass of django.forms.Field as long as it implements a clean() method and its init() method ...
0
votes
0answers
86 views

Nhibernate joined nested subclasses get data scenario

I have the following situation: A abstract base class Anag, P concrete class Person derived from Anag O other concret objects derived from Anag..... I have implemented sucessfully using joined ...
0
votes
2answers
214 views

Nhibernate/hibernate Avoid Insert in joined table or view

I have to join a entity with a view to retrieve some data into properties <join table="XXVIEW" optional="true"> <key column="ID_ENT" /> <property name="Prop1" insert ...
0
votes
2answers
122 views

communicate between 2 classes in android

ok i have 2 classes a activity class and another class which extended from maps.Overlay. so the second class cannot be extended from first class because it already extended. my second class get the ...
0
votes
2answers
101 views

OK so i dont get how to make this professor class call on this lecturer class

So i have this code i'm trying to work through first is this class Lecturer (Person): def lecture (self, stuff): self.say(stuff + "- you should be taking notes") then i'm trying to ...
0
votes
2answers
173 views

How do I get all entities of an App Engine model class, including those of its subclasses?

I've got a question about Google App Engine and querying the datastore. Suppose I've got three classes: class Animal(db.Model): age = db.IntegerProperty() class Giraffe(Animal): # ... class ...
0
votes
2answers
137 views

Databinding sub classes

Say I have these 3 classes: public class ClassParent { public string TestParent { get; set; } } public class ClassChild1 : ClassParent { public string TestChild1 { get; set; } } ...
-2
votes
2answers
116 views

C++ subclass using keyword question

Say I have the following: template<typename TemplateItem> class TestA { public: TemplateItem Item; void Function1(){;} void Function2(){;} void ...