Tagged Questions
The class-hierarchy tag has no wiki summary.
14
votes
11answers
13k views
Is there some tool to visualize Java class hierarchies and relations?
Provide the source code of an application as input to generate a visual representation of the relationship between classes, method calls, etc.
What tools do this?
10
votes
1answer
3k views
Class and Interface hierarchies in Entity Framework?
I have two related classes which share a common interface and are both stored in the same underlying database table. However, the Entity Framework generates one common class, where I really need the ...
8
votes
4answers
4k views
Application to generate Java class hierarchy diagram
Looking for a tool that:
Produces a visually pleasing (not garish), orthogonally structured graph hierarchy
Outputs high-quality PNG images (300dpi+)
Visually differentiates classes, abstract ...
8
votes
5answers
3k views
Tool to Show Class Hierarchies in .NET
Is there a way/tool that could show me all the classes/interfaces that implement a certain interface in my project? In Eclipse (Java) I would use the context menu "Open Type Hierarchy" option, which ...
7
votes
1answer
146 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 ...
7
votes
2answers
252 views
In C++, should I almost always use virtual inheritance?
I see from this entry that virtual inheritance adds sizeof(pointer) to an object's memory footprint. Other than that, are there any drawbacks to me just using virtual inheritance by default, and ...
6
votes
5answers
135 views
Overloading with a class hierachy - most derived not used
The problem
I am trying to avoid code that looks like the following:
If(object Is Man)
Return Image("Man")
ElseIf(object Is Woman)
Return Image("Woman")
Else
Return Image("Unknown Object")
I ...
5
votes
4answers
156 views
Giant switch statement for constructors
I have a container which holds a bunch of pointers to a base class, and a function which takes some input and returns a class which is a subclass of the base class. Which subclass it returns depends ...
5
votes
4answers
92 views
Compile time tree structure
I want to retrieve values from a tree stored in another system. For example:
GetValue("Vehicle.Car.Ford.Focus.Engine.Oil.Color")
To avoid typing errors and invalid keys, I want to check the name at ...
5
votes
3answers
3k views
How to test if one java class extends another at runtime?
How to I test if a is a subclass of b?
Class<?> a = A.class;
Class<?> b = B.class;
5
votes
1answer
202 views
Foolishness Check: PHP Class finds Class file but not Class in the file
I'm at a loss here. I've defined an abstract superclass in one file and a subclass in another. I have required the super-classes file and the stack trace reports to find an include it. However, it ...
5
votes
9answers
4k views
I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from?
I wish to implement a deepcopy of my classes hierarchy in C#
public Class ParentObj : ICloneable
{
protected int myA;
public virtual Object Clone ()
{
ParentObj newObj ...
5
votes
3answers
1k views
NHibernate - Changing sub-types
How do you go about changing the subtype of a row in NHibernate? For example if I have a Customer entity and a subclass of TierOneCustomer, I have a case where I need to change a Customer to a ...
4
votes
3answers
196 views
Object browser for PHP
I want to browse huge amounts of code written in PHP and it would be useful to have a graphical representation of various classes and their methods.
Do you know of (free) tools making this possible?
4
votes
3answers
180 views
Introducing interfaces into an existing class hierarchy in Delphi
Are there any side effects to changing a class hierarchy's ancestor from TObject to TInterfacedObject so that I can implement interfaces further down the inheritance chain?
I've programmed in Delphi ...
4
votes
1answer
1k views
Spring JDBC RowMapper with Class Hiearchies
I wanted to know what the community considers the "best practices" in respect to mapping class hierarchies with Spring JDBC.
We do not have the ability to use a full fledged ORM tool, however we ...
4
votes
1answer
643 views
Serializing POCO Excluding Class Members
I wish to make a POCO [Serializable] but not any other class members in its class hierarchy tree. I know there is [NonSerialized] which works only for fields, but is there any way to exclude them or ...
4
votes
7answers
426 views
.NET Object Hierarchy - To Event or not to Event
Your job is to design a Project Plan class library which supports the tracking of tasks (similar to how MS Project works). This class library has a Task object (among others).
The Task object has a ...
3
votes
4answers
94 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, ...
3
votes
4answers
365 views
Objective-C organization of hierarchies of class clusters
This is a question of class design with Objective-C. Here is an example:
File systems have files and directories. Both are "nodes". Walking a directory for example yields a list of nodes, some being ...
3
votes
2answers
322 views
deciphering vtable dumps
I am "playing" with virtual inheritance in C++, and I want to know how a class object is laid out.
I have those three classes:
class A {
private:
int a;
public:
A() {this->a = 47;}
...
3
votes
2answers
144 views
can I see interfaces in type hierarchy view?
when I check A class that is derived from an interface in Eclipse for type hierarchy, it doesn't show interfaces. is there a way to configure it to display the interface in type hierarchy? or any ...
3
votes
1answer
78 views
How can I improve the hierarchy of my event classes?
For the XMPP interface for the Stack Overflow chat I am parsing the JSON feed from chat and generating Ruby objects for every chat events, such as messages sent, edits sent, users logging in or out, ...
3
votes
2answers
410 views
c++ function overload resolution regarding templated type and class hierarchy [closed]
Possible Duplicate:
Priority when choosing overloaded template functions in C++
A templated function gives me the convenience to operate on a variety of types:
template<typename T> ...
3
votes
2answers
55 views
What design should I use so a class can query one of it's ancestors?
I'm creating an object hierarchy that is representing a table that is draw on a control. My hierarchy looks like this :
Table has multiple pages
Page has multiple lines
Line has multiple cells
Cell ...
3
votes
5answers
330 views
C#: Unit testing of child classes
Say we have this hyper simple class hierchy:
public class SomeMath
{
public int Add(int x, int y)
{
return x + y;
}
}
public class MoreMath : SomeMath
{
public int ...
3
votes
5answers
157 views
Is there a way of finding what .NET classes implements a certain interface?
For example if I wanted to see what my .NET options were for something implementing IList or IDictionary. Is there a way to find that for example in the MSDN documentation?
3
votes
3answers
513 views
How to link “parallel” class hierarchy?
I've got a little class hierarchy where each class corresponds to a certain TComponent descendent (say base class TDefaultFrobber with descendents TActionFrobber and TMenuItemFrobber, corresponding to ...
3
votes
3answers
3k views
Table per Concrete Class Hierarchy in Hibernate
I have the following Hibernate Mapping, which has to be mapped using the Table per Concrete Class Hierarchy:
<hibernate-mapping package='dao'>
<meta ...
2
votes
1answer
52 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
70 views
PHP tricky problem
I have the following class structure:
class Parent
{
public function process($action)
{
// i.e. processCreateMyEntity
$this->{'process' . $action};
}
}
class Child ...
2
votes
1answer
100 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 ...
2
votes
0answers
79 views
Count number of classes and class hierarchies in a Python package
I have a directory with many subdirectories with Python source code which correspond to a Python package. I want to count how many classes and root classes (top of hierarchies) are contained in these ...
2
votes
2answers
186 views
F# discriminated unions versus C# class hierarchies
I have the following code:
public abstract class A ...
public class B : A ...
public class C : A ...
void my_fct(A x) {
if (x is B) { block_1 }
else if (x is C) { block_2 }
else { block_3 }
}
...
2
votes
1answer
396 views
Useful publish-subscribe semantics
I'm looking for Wikpedia-style references to designs and implementations of lightweight publish-subscribe mechanisms that actually work. I will update the question according to the answers and ...
2
votes
3answers
141 views
Ruby: How do we identify whether an object o has a class C as its ancestor in the class hierarchy?
In Ruby, is it possible to identify whether an object o has a class C as its ancestor in the class hierarchy using any method?
I've given an example below where I use a hypothetical method ...
2
votes
1answer
105 views
Is/Are there any standard package structuring/heirarchy practices for Android?
When developing J2EE web applications I would typically organise my package structure in the following way
com.jameselsey.<applicationName>.
Controller - Controllers/Actions go here
Service - ...
2
votes
4answers
100 views
How would I best address this object type heirachy? Some kind of enum heirarchy?
I'm curious as to any solutions out there for addressing object heirarchies in an ORM approach (in this instance, using Entity Framework 4). I'm working through some docs on EF4 and trying to apply it ...
2
votes
4answers
516 views
C# property not available in derived class
I'm not sure what's going on. I have the following base class:
public class MyRow : IStringIndexable, System.Collections.IEnumerable,
ICollection<KeyValuePair<string, string>>,
...
2
votes
2answers
210 views
Does ruby provide a method to show the hierarchy calls?
That's all, i want to see what are the clases that inherits a fixed class. There is a method for this in RUBY?
Aptana offers an option that shows this, but is there any method?
Thanks
1
vote
1answer
73 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 ...
1
vote
2answers
89 views
Codeigniter declaring class level variable in CI_Model class
Guys I am new to PHP and Codeigniter, I am declaring class level varible which i wanted to access in model class and getting error that varible is not defined.here is my code. please help me.
class ...
1
vote
2answers
45 views
Enforcing contract on concrete instances of an abstact hierarcy
I'm lost and in need of some divine guidance.
First things first: assume you have some nicely-neat interfaces:
class IProduct
{
public:
virtual void DoThings();
}
enum ProductType
{
...
}
...
1
vote
1answer
74 views
How to analyse Jar file?
I want to analyze jar file, i.e. the code hierarchy (class diagram). Which tools will be helpful for this?
1
vote
2answers
208 views
Exposing properties to a Spark Skin class
I am having trouble wrapping my head around the spark skin class in relation to it's host component. Basically, from what I've seen with most every skin that comes in the Flex 4 framework they don't ...
1
vote
3answers
292 views
lift-json serialization of case class hierarchy
I have a hierarchy like the following:
case class A(val a: Long, val b: String)
case class B(val c: String) extends A(a=3, b="a string")
and I'm trying to serialize it using lift-json ala the ...
1
vote
1answer
122 views
Static image variable across multiple classes
I'm currently working in C#, and I have a base class (bullet) that is required to have a variable and subsequent getter (image) because another class expects that behavior (powerup) in order to ...
1
vote
1answer
129 views
Scala - root of covariant type hierarchy
The following Scala class:
class Foo[+T <: Bar] extends FooBase ...
effectively defines a type hierarchy which has Foo[Bar] as its root - i.e. any valid Foo[X] will be assignable to a Foo[Bar] ...
1
vote
4answers
262 views
Objective-C inheritance; downcasting/copying from parent class to derived class
In my program I have a class, say ClassA. I'd like to create a derived class, say ClassB. My program has functions returning instances of ClassA and in certain cases I'd like to use these returns to ...
1
vote
4answers
300 views
How big class hierarchy influence on java performance?
I have class that extends another class, that extend another class.. and so on.
How slow (in percent) class with 100-level hierarchy level will work, then class with 10-level hierarchy level?