Tagged Questions

2
votes
1answer
32 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 …
2
votes
2answers
35 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
98 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 …
1
vote
7answers
139 views

Changing type of a field in C# at runtime

Hi, I have an existing heirarchy of classes, say something like this: Business - Division - ProjectTeam - Employee These classes are instantiated via deserialization. However, now I …
0
votes
0answers
25 views

create hierarchy in non parent child dimensions

I am creating a user hierarchy for product dimension with AdventureWorksDW in a cube. I have added Product Key, ProductCategory Key and Product Subcategory Key attributes. But, its always giving me a …
2
votes
2answers
48 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
2
votes
7answers
404 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 …
2
votes
3answers
592 views

Application to generate Java class hierarchy diagram

Looking for a tool that: Produces a visually appealing, orthogonally structured graph hierarchy Outputs high-quality PNG images (300dpi+) Visually differentiates classes, abstract classes, …
3
votes
5answers
113 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?
0
votes
6answers
228 views

Is there any relation between the class that implements interface and that interface???

Consider this class hierarchy: Book extends Goods Book implements Taxable As we know, there is a relationship between a subclass and its superclass (is-a). Q: Is there any relationship like …
4
votes
1answer
108 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
212 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 …
2
votes
3answers
303 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
343 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 …
2
votes
3answers
745 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 …

1 2 next
15 30 50 per page