The subclasses tag has no wiki summary.
0
votes
1answer
13 views
Fluent NHibernate mapping discriminator
I need to set more than one discriminate values for parent class. Is it possible to do and how?
For example:
PARENT_CLASS
DiscriminateSubClassesOnColumn("COLUMN_NAME", "X");
CHILD_CLASS_1
...
0
votes
2answers
85 views
PHP OOP Based CMS - Displaying Separate Pages
I'm building a CMS using PHP and OOP - it's a bit of a learning project, something to improve my OOP skills while giving me the motivation of having a final target in mind.
I've come to actually ...
0
votes
0answers
53 views
EER to Relational Model - Disjoint subclass and relationships between subclass entities
I've tried searching for this but I failed to find something. That could be a problem with my search strategy, or this could just be a simple question with a simple answer.
I've drafted an EER model ...
1
vote
5answers
58 views
Optimal setting of class inheritance
I'm doing a practical college work about class inheritance. My problem is two of the three subclasses have a common method that it's not present in the third, so I don't know if is best to add this ...
2
votes
2answers
137 views
How to access properties from subclasses in an entity component system
I just started working on an entity component system for a sidescroller game.
I'm pretty new to C++ but I've already read through a lot of tutorials and decided the best way would be to have a entity ...
-1
votes
2answers
46 views
how to display all the fields using the display method in the subclass and from superClass [closed]
How to display all the fields using the display method in the subclass and from superClass,What i want is to display all the fields in the subclass from the superclass
0
votes
1answer
55 views
Python function to get a list of subclasses of a given class from searching through all pages in a directory
I need a function that would get a list of all the files that end in ".py" in a given directory and then, for each file, find out if there are subclasses of a given class in that file. If there are, ...
0
votes
1answer
60 views
As3, OOP strategy for custom class DrawVectorLineArt
I am doing some math projects that require a lot of vector line art--that is a line drawn between to points with a circle at the start point and an arrow at the end point. A call to Math.atan2() ...
0
votes
2answers
143 views
Static variable of superclass acting weird in subclass-creation
I'm working on a classic homework program and cannot for the life of me figure out why my static variable in the superclass reacts the way it does..
The program is a bankaccount where I have created ...
0
votes
1answer
116 views
State Machines, Sub-Classes, and Function Pointers
I'm having trouble implementing a state machine for class. I keep getting the errors:
state.cpp:5: error: have0 was not declared in this scope
state.cpp:10: error: redefinition of State* ...
0
votes
3answers
117 views
Wicket - Reusable panels with java-subclasses
I have a java class:
public Task {
private int id;
private Company sender;
private Company receiver;
//Getter and Setter
...
}
As you can see, I ...
0
votes
2answers
169 views
Rails STI subclasses validation on update_attributes
I would like to know if there's a way to when doing STI the update_attributes, validate the attributes based on the new class type?
For e.g. suppose i have:
class A < ActiveRecord::Base
end
...
2
votes
2answers
188 views
css subclasses - divs not matching css rules
For some reason my subclass will not work on DIV elements?
The CSS rules match inline tags like span + a but it will not match div.
Please look at the example below:
<style>
.row {
...
2
votes
5answers
77 views
Java Initializing a subclass
What is the appropriate way to initialize an implemented class of an interface (determined by some logic)
Example
IAnaimal is an interface
Cat -> IAnimal
Dog -> IAnimal
Cow -> IAnimal
int ...
0
votes
2answers
99 views
Call function on some objects in a vector containing different subclasses
I have something like this:
class A {
void add (A* a) {
//add a to a vector<A*>
}
virtual void draw() = 0;
}
class B : public A {
void tick() {}
void draw() {}
}
...
0
votes
2answers
63 views
Java method dispatch semantics
This is a very odd question, so please bear with me.
I'd like to know if the Java specification guarantees that an overriding method in two subclasses is resolved via identical mechanisms in each. ...
-2
votes
2answers
28 views
Need it to inherit a number instead of string
System.out.println("First Camera: " + camera1.getName()+ " " + camera1.getResolution());
This is the println statement that should read:
First Camera: Nikon 800 Resolution
The method getResolution ...
0
votes
1answer
93 views
Inheritance Program. Where do I start?
Here is the project that I have been given:
Design and implement a set of classes that define various types of electronics equipment (computers, cell phones, pagers, digital cameras, etc.). ...
0
votes
3answers
111 views
Can you have a singleton as a subclass in java
how do you have a singleton pattern in a subclass? For example in the code below itemCatalog extends item. I want to use the getPrice getter of class item
public class ItemCatalog extends Item{
...
0
votes
1answer
104 views
Using same toString() to access different subclass variables
I am interested in seeing how a single printf statement or @Override toString() method can be used to give accurate information when there are possible different subclasses that may need to be ...
0
votes
1answer
122 views
JavaScript -Creating derived class
<html><head><script>
function Pet(){ // Base Class
var owner = "Mrs. Jones";
var gender = undefined;
this.setOwner = function(who) ...
0
votes
2answers
164 views
How to access the SubClass features in MainClass?
About this problem my previous question is that. How to Access Multiple Classes data in One MainClass? Now to make my problem more clear i provide source code here SourceCode. As my source ...
1
vote
1answer
164 views
cxf exposing subclasses of abstract class
My (simplified) situation:
Service @WebService
Container getContainer() @WebMethod
Container
void setObjects( ContainableObjects[] objects )
ContainableObjects[] getObjects()
...
3
votes
1answer
393 views
Comparator/Comparable/ComparatorChain questions
I'm working on implementing a hierarchy which deals with Comparator and the Comparable interface. Couple of things that are unclear to me:
If I'm adding comparators to a comparator chain, what ...
4
votes
2answers
138 views
How to count the number of CRTP subclasses of a template class?
Does anyone know of a method to use CRTP to count the number of subclasses of an object?
Suppose we had a setup similar to the following one:
template <typename T>
class Object
{
.... ...
1
vote
1answer
52 views
java Subclases when i make an object? [duplicate]
Possible Duplicate:
How are Anonymous (inner) classes used in Java?
i have a question about java. i saw this in many sources...
Class object = new Class()
{
// What is this, a subclass ...
2
votes
2answers
426 views
Java - Avoiding cast using an array of superclass-objects
I have many sub-classes implementing the superclass Animal (Dog, Cat, Mouse, etc)
So I do:
Animal[] arrayOfAnimals = new Animal[100];
I put in it Dog,Cat etc objects.
When I get something from it ...
3
votes
2answers
107 views
Is it possible to thread a subclass within a class?
This is for a moderation bot for C&C Renegade, in case anyone wants some background.
I have a class which will act as a parent to a load of subclasses that provide IRC connections, connections to ...
1
vote
1answer
99 views
Python Subclass Tracking - Metaclasses vs Builtin
For a Django tab library, I created an architecture that uses tracking of marked subclasses.
To do this, I created a base class and then derive all tab classes from it. I track the descendant classes ...
1
vote
1answer
676 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
574 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
42 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 ...
2
votes
3answers
89 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
2answers
333 views
C++ subclass using keyword question
Say I have the following:
template<typename TemplateItem>
class TestA
{
public:
TemplateItem Item;
void Function1(){;}
void Function2(){;}
void ...
0
votes
6answers
157 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
142 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 ...
6
votes
4answers
585 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?
};
...
0
votes
1answer
266 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
164 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
...
5
votes
5answers
923 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 <- ...
0
votes
2answers
413 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 ...
3
votes
3answers
5k 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
925 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
{
...
0
votes
1answer
478 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 ...
2
votes
3answers
179 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
579 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
2answers
689 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
314 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
109 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 ...
1
vote
1answer
105 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 ...



