The class-hierarchy tag has no wiki summary.
0
votes
3answers
29 views
1
vote
5answers
62 views
Should Player inherit or own a Level?
I've been trying to learn OOP for the last few weeks as much as I can, and I've learned alot, but I'm not certain of this one, what should my class hierarchy look like?
Imagine two classes, here's a ...
2
votes
1answer
54 views
Directory structure - file and folder classes should know each other?
I encountered a problem with two classes knowing each other when I was trying to create a directory structure similar to this:
Here's my Base class which includes the common elements of File and ...
2
votes
2answers
37 views
What term is used to denote the distance between two types in an inheritance hierarchy?
I have an extension method for calculating the distance between a base type and a derived type, such that the same type would have return a value of 0 and a direct subtype would return a value of 1. ...
0
votes
1answer
45 views
How to handle multiple Android methods?
Ok, the question is. In my Android app I have two separate activities for options and for the main activity. There is the place in the main activity, when it checks for changes in options and applies ...
6
votes
5answers
167 views
How should a basic class hierarchy be constructed? [closed]
I know how to code and use simple classes, and I even know how inheritance works and how to use it. However, there's a very limited amount of guides on how to actually design the structure of your ...
2
votes
3answers
173 views
c# implement interface method with parameter of subclass type
I have this desired class hierarchy:
interface IClass
{
string print(IClass item);
}
class MyClass : IClass
{
// invalid interface implementation
// parameter type should be IClass not ...
0
votes
2answers
52 views
How to design a class hierarchy
I'm designing a class hierarchy for a Java Project. It involves creating a class hierarchy to represent several bank accounts.
Now, all bank accounts have a few attributes in common. These can be ...
-2
votes
1answer
47 views
How do I change the hierarchy parent of an activity?
At the moment it is main activity but I want to change it to the Categories activity.
Is this where the problem lies?
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch ...
2
votes
2answers
44 views
Does Java offer a way to allow special access from Packages along the Hierarchy?
Does Java Package hierarchy affect the access right of classes and variables?
About Java Package: http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html
Please take a look at this ...
0
votes
6answers
78 views
C# events and class hierachy
I have the following classes
Child class:
public class ChildClass
{
...
private void EventHandler(...);
...
}
Parent class:
public class ParentClass
{
...
ChildClass child;
...
...
3
votes
3answers
236 views
Java - Designing a validator, class hierarchy
I'm working on designing a validator for certain objects (fields of those objects). These objects are enclosed in one, bigger object - container.
Example: Car as a container . Consists of Wheels, ...
1
vote
1answer
50 views
How can all the Workspace windows be enumerated in a Pharo workspace?
I want to list all the Workspaces windows in a in a Pharo window. When I shift click a Workspace window the item selected is usually a PluggableTextMorph or a TextMorphForEditView. When it is a ...
0
votes
1answer
82 views
Understanding syntax of generics in Java
I started studying Java-generics. And I have some misunderstanding of the generics syntax and its meaning. I beg to treat with understanding if my question seems too trivial.
You can write:
public ...
1
vote
1answer
206 views
Qt class hierarchy image/pdf
Do you know of any decent image or pdf of the class hierarchy of Qt 4?
Such as they have for Qt 3:
ftp://ftp.trolltech.com/qt/pdf/3.0/qt30-class-chart.pdf
1
vote
3answers
66 views
Is there any reason for an empty concrete method in an abstract class?
I was recently looking through some open source code PicketLink code. If you take a look at this class, you'll see a number of concrete methods in an abstract class that do nothing. Is there any ...
0
votes
0answers
69 views
Can Visual Studio export its “Class View” to plain text?
Can Visual Studio (2010 or 2012) export its "Class View" to plain text? I don't see any options or other way to do this except manually.
Are there any other tools for creating a plain text class view ...
0
votes
0answers
116 views
How to expose a native C++ type hierarchy to .Net using C++/CLI
I have different classes exported from native dll’s. The classes that is exported, inherit from multiple pure abstract classes (interfaces). The dll’s differ, in that the concrete class they export ...
2
votes
3answers
79 views
Static variable assignment in descendent bubbles up to parent?
I've run into a problem and I'm not sure if this is just normal behaviour or if I wrote something wrong. I have a method in my base class that applies a global filter to a given class by way of ...
1
vote
1answer
204 views
Retrieve only the superclass from a class hierarchy
I have an scenario as the following:
@Entity
@Table(name = "ANIMAL")
@Inheritance(strategy = InheritanceType.JOINED)
public class Animal implements Serializable {
@Id
...
1
vote
5answers
128 views
Java, Possible to modify method declaration of super class in abstract class hierchy?
I have an abstract class UserdataUpdater which extends Updater
Updater has a method declaration
public abstract void processRow (Cluster cluster, IAppendOnlyData row);
Is there anyway to modify ...
0
votes
2answers
76 views
Nullpointerexcption & abrupt IOStream closure with inheritence and subclasses
A brief background before so we can communicate on the same wave length. I've had about 8-10 university courses on programming from data structure, to one on all languages, to specific ones such as ...
4
votes
2answers
300 views
Creating a singleton class with dispatch_once for class hiearchy
I have a 2 child classes that inherit from 'MyClass' and each child class should be a singleton.
I've used this pattern for getting a static instance when I don't have any other classes inheriting:
...
2
votes
2answers
181 views
Build a Separate Java Class Hierarchy
Every other class in Java inherits from the Object class.
Is it possible to add a second, completely separate, class hierarchy in Java based around my own FastObject class?
My original goal in ...
0
votes
1answer
65 views
Collect class hierarchy of Flex application
I was wondering: If I have built a Flex application, is it possible to somehow collect it's class hierarchy using reflection or some other method? For example if I have defined components: ...
1
vote
1answer
104 views
How to access layout in TTS OnUtteranceCompleted callback?
I am making a simple Android program that runs mnemonics or math exercises for training purposes.
I have a "new exercise" button that changes question and answer. I want to implement a "text to ...
10
votes
3answers
142 views
Wrong name resolution when parent and inner class have the same name
I have an odd case with Visual Studio 2003. For somewhat legitimate reasons, I have the following hierarchy:
class A {};
class B : public A {
public:
class A {};
};
class C : public B::A {};
...
1
vote
1answer
73 views
Which player class is created by better hierachy?
Which class is more acceptable for future implementations? Assault predator(multiple inheritance) or queen(multi-level hierarchy)?
#include "stdafx.h"
#include<stdlib.h>
class living
{
...
2
votes
1answer
93 views
Object extension in java
In java if you have an object that requires a generic to extends a particular class, but you want to implement it with an extension of that class is there any way to let java know that you are not ...
1
vote
5answers
164 views
overriding run() method in Thread subclass
I am just wondering what the result would be if I subclassed a class which extends Thread and I wrote following code and tested:
class A extends Thread {
public A() {
this.start();
}
...
0
votes
1answer
244 views
Call subclass' method from list of base class objects?
Before I get to my question, here is a sample of the structure of my code:
abstract class Entity
{
#region Declarations
public string Name;
public string Description;
#endregion
...
1
vote
3answers
61 views
Does Eclipse have means to show me a “merge” of a Java class's full implementation?
I'm currently using a Java framework with quite long class hierarchies. When crawling through a class's code path, I have to jump back and forth between the different classes within this hierarchy.
...
25
votes
5answers
749 views
Ambiguous when two superclasses have a member function with the same name, but different signatures
struct A {
void f(int x) {}
};
struct B {
template<typename T> void f(T x) {}
};
struct C : public A, public B {};
struct D {
void f(int x){}
template<typename T> void ...
0
votes
2answers
455 views
Can't get constructor from different class within same package to be recognized.
So these 2 files I am going to post are each in my DataBase package. The DBBinding class just needs to create an object with a string for the key and one for the value. Then the DBrecord is going to ...
1
vote
2answers
84 views
Having a subclass accept a reference to a parent in a constructor
I have a class hierarchy that can be simply put like this:
struct Parent {
Parent() { }
Parent(Parent& p, std::string s) { }
private:
// I want this class to be non-copyable
...
0
votes
4answers
309 views
Where to find Java API Class diagrams?
Is there a site where we can find JAVA API class diagrams.
It helps to be able to see the class hierarchy (example Exception class hierarchy) in a visual manner.
Thanks.
1
vote
1answer
263 views
Traverse a class hierarchy from base to all descendants
In an iOS app I am writing I want to traverse a class hierarchy to make an inventory of all subclasses. My intent is to use each subclass type as a key -- via NSStringForClass() -- in a dictionary.
...
0
votes
2answers
132 views
Validation errors hierarchy design
In our system we have an entity Product, which might have various custom properties. Set of properties might differ from product to product, and is stored in a field of type List<Property>. ...
2
votes
1answer
64 views
Programmatically push down “safe” methods in Smalltalk
I want to collect which methods can be safely pushed down from a superclass to a subclass, specifically, when you have only one subclass and there is no reason to maintain the method in the ...
4
votes
4answers
140 views
Pharo/Squeak - How do I quickly browse the implementation of a given method in a given class?
Let's say I want to see how "copy" is implemented in the Dictionary class. Currently I use the system browser and manually traverse the inheritance hierarchy (bottom up) until I find the class that ...
1
vote
5answers
1k views
Force all classes to implement / override a 'pure virtual' method in multi-level inheritance hierarchy
In C++ why the pure virtual method mandates its compulsory overriding only to its immediate children (for object creation), but not to the grand children and so on ?
struct B {
virtual void foo () ...
-1
votes
1answer
42 views
Higher Class Hierarchy vs Wider Class Spectrum
I have a "Good Practice" Question:
Lets assume a case where one have many List Types
IObservableList With Events
IReadOnlyList Read Only
ISomeList Some List that perform ...
1
vote
1answer
282 views
Mapping class hierarchy through fluent nhibernate by using 2 strategies
I want to combine table-per-class and table-per-hierarchy strategies using fluent nhibernate or nhibernate itself(I mean hbm files), but I don't know how. I prefer fluent over hbm but if it's ...
0
votes
2answers
109 views
How to call a method in a class hierarchy?
I have this super class which extends from another class
public abstract class AbstractDOEMessageFinderAction extends BasicObjectFinder {
public Object performBasicSearch() {
// works ...
3
votes
4answers
1k views
Calling child method, when cast to parent type in java
I am having problems with some course work i'm trying to finish off and any help would be appreciated!
I have 3 types of accounts which extend an abstract type "Account".. [CurrentAccount, ...
2
votes
1answer
121 views
Is there a utility for Delphi 6 that analyzes class hierarchies and can be queried for method ancestry?
Is there a tool for Delphi 6 that can analyze the class hierarchy of your application and answer questions about particular methods? I could use a tool that could take a particular method name and it ...
2
votes
1answer
123 views
How to do structural typing in scala that ALSO only accepts subclasses?
Instead of describing the problem in words, let me just show you a Scala Interpreter session that shows what I want to do.
scala> class A extends Parent{
| def name = "Alex"
...
2
votes
3answers
108 views
PHP tricky problem
I have the following class structure:
class Parent
{
public function process($action)
{
// i.e. processCreateMyEntity
$this->{'process' . $action};
}
}
class Child ...
7
votes
1answer
169 views
What's the meaning of “value class space is flat”?
I am now reading the book Programming in Scala. In chapter 11, it mentioned:
Note that the value class space is flat.
But no one explain what it means. Is it important? Why? And how to ...
2
votes
1answer
425 views
Define a hierarchy of model classes in CakePHP
By default CakePHP has a AppModel class and every model of an application inherits from it. A common design pattern to share logic between models is to create a behavior and configure a model to ...


