hierarchy

Find Interface Inheritance Hierarchy For A Type

My purpose is to find out if a class implements an interface directly. In the below example class B implements interface IB and interface IB implements IA. How to find out the inheritance hierarchy. When we view an type in Object Browser, it shows a detailed hierarchy. How can I achieve similar result. interface IA { string Member1...

Mapping HTML5 elements to HTML classes and IDs, but what about header tags?

Hello, at work we're starting to follow this particular guide for slowly implementing HTML5 goodies: http://oli.jp/2008/html5-class-cheatsheet/ The basic idea of using HTML5 structure, but with HTML4 divs with classes and IDs instead. We're aware of Javascript scripts that can genearate the require HTML5 elements (so IE can actually st...

SQL Query: Hierarchical Coalesce

I have a table that defines a heirarchy: Create Table [example] ( id Integer Not Null Primary Key, parentID Integer Null, largeData1 nVarChar(max) Null, largeData2 nVarChar(max) Null); -- largeData3...n also exist Insert Into [example] (id, parentID, largeData1, largeData2) Select 1, null, 'bla...

C++ : Multiple inheritance with polymorphism

Hi, (pardon the noob question in advance) I have 4 classes: class Person {}; class Student : public Person {}; class Employee : public Person {}; class StudentEmployee : public Student, public Employee {}; Essentially Person is the base class, which are directly subclassed by both Student and Employee. StudentEmployee employs multip...

Joomla: jroute & navigating back up in menu hierarchy

Hi, I have a simple menu hierachy in a Joomla 1.5 site: [Newsletters] -> [publisher A] -> [Newsletter A1] -> [Newsletter A2] -> [publisher B] -> [Newsletter B1] -> [Newsletter B2] When navigating this hierarchy using the menu items or breadcrumbs, the SEF URL...

Best practices to list books and books childs with hierarchical style in Views.

Im developing a website about travels. My needs is to build a view that output: France Guide - Guide to Paris* -- Hostels in Paris - Guide to Lyon* - Guide to Hostels in France Ireland Guide - Dublin* -- Hostels in Dublin - Cork* Italy Guide - Rome* - Florence* The nodes with the asterisk * has a location field, and i need to show th...

Sort by Referrer (quite complicated)

I will try my best to be both succinct and fully explanatory in this predicament. On a site I manage, we allow a manager to view their "Recruiting Downline" which entails a list of all agents they personally recruited, as well as the recruits that particular agent (and so on and so on) brought to the Team. For example: I recruit two...

dijit.Tree from XML

Hi All, I've been trying to get a Tree to work using my xml. But i'm like stuck without any clue as how to move ahead. I've tried quite a few things, which i've tried and would mention here. Background: I've been trying to create a tree from XML which looks like: <root> <hierlabel>A_Level0</hierlabel> <hierlabel>A_Level1</hi...

Linq extension method, how to find child in collection recursive

Hi, I'm already familiar with Linq but have little understanding of extension methods I'm hoping someone can help me out. So I have this hierarchical collection pseudo code ie: class Product prop name prop type prop id prop List<Product> children And I have a list of products List products. Is there any way I can look for pr...

How to create a hierarchy ID

Hello all , I'm new to c# and I'd like to make a method to generate a hierarchy ID like the following 1.0 1.1 1.1.1 1.1.2 1.1.3 1.2 1.3 2.0 2.1 is there and way to accomplish this ? any help will be highly appreciated. ...

Representing an immutable hierarchy using tuples

I am trying to represent a hierarchy using namedtuple. Essentially, every node has three attributes relevant to the hierarchy: parent, leftChild and rightChild (they also have some attributes that carry the actual information, but that is not important for the question). The problem is the circular reference between parents and children....

Need clarification about nested models

I need an example on how to operate on nested models. Let's assume, we have some order management application and models: Order, Position, Item. Order can contain Positions and Positions can contain Items. The question is: how to handle data selection? Some use cases that is needed: Get list of Orders with Positions and Items (like...

Returning the parent/ child relationship on a self-joining table...

Hi, I need to be able to return a list of all children given a parent Id at all levels using SQL. The table looks something like this: ID ParentId Name --------------------------------------- 1 null Root 2 1 Child of Root 3 2 Child of Child of Root Give an Id of '1', how would I return the entire...

In Core Data, can I make a parent property optional in only one of the children?

In core data, in the xcdatamodel file, if i want to specify a parent object, but for one of the children of the parent object, i want a property to be optional, and for the other, i don't want to check optional, is there a way to do that? or should i just take the property out of the parent and put it in the children so that I can make o...

Creating a Tree from a List of Rectangles

This may be a silly question, but nothing comes to mind straight away. Given a list R of 2D rectangles (x, y, w, h) arranged so that any given rectangle is either fully inside or fully outside any other, what's the most efficient way to determine the immediately enclosing rectangle p of each rectangle in R? Currently I sort R by y then x...

What is the best way to display a hierarchy of choices in an ASP.net Forms Application?

I am working on an ASP.net Forms Application that keeps track of information about different offices in an organization. The offices are organized into a hierarchy. Some users of the program will have access to certain information about all offices in the hierarchy. Some users of the program will have access to only a small part of th...

Using SQL Report Builder 2.0 to group by Parents/Children

Hello, this is my first post, so I hope I get everything right... I am trying to generate a report that shows a summary of items held for each customer in our database. Our customers can have children companies, so I need the report to group on the parent company, then show the children and their sums, and then show the total for the P...

Creating a nested set with sqlite and Objective-c

I was struggling with nested sets, specifically building one on the iPhone using sqlite. I found a handy script that I then adapted from PHP. It basically sets the left and right values based on parent ids. So you need a table where each entry has an 'id' and a 'pid' as well as 'lft' and 'rgt'. I find it easy to map the ids to their re...

Rendering a hierarchy using LINQ?

Hi everyone, Let say we have a class Category { ID, Name, ParentID } and a List 1, 'Item 1', 0 2, 'Item 2', 0 3, 'Item 3', 0 4, 'Item 1.1', 1 5, 'Item 3.1', 3 6, 'Item 1.1.1', 4 7, 'Item 2.1', 2 Can we using LINQ to render a tree like: Item 1 Item 1.1 Item 1.1.1 Item 2 Item 2.1 Item 3 Item 3.1 Any helps is appreci...

Separated GUI and game logic class hierarchy?

Im developing a game on Java, and wanted to keep my code separated in packages for the hud/gui and the game logic so that code can be reused in some other project, and where objects to be drawn call methods from another class or classes (maybe a "rendering context" like a group of classes just made for the drawing or something like that)...