Hi guys,
I am in the process of constructing a Class diagram for an appointment system.
My question is that when objects are generalized is it compulsory to place attributes and operations for each generalization tree?
Please see the image I have uploaded.
The Nurse, Admin staff, and Doctor are generalization of the Employee. However there are no attributes or operations mentioned in their boxes. Is this normal...
Search Result
Collapse
7 results in 0.0039 seconds.
Keywords
Members
Tags
-
Class Diagram Question
-
How to access element attributes using JSP and XML?
Hi,
I'm trying to develop what should be a simple jsp that reads an XML file, parses it and displays the content in a web page. Simple right?
I have developed the XML and so any changes can be made there.
The XML IS
Code:<?xml version="1.0" encoding="UTF-8"?> <featured> <module type="Course Tool" title="Video Loader">
-
XML schema restriction to values of another element
I would like to know if it is possible to write an XML Schema restriction that binds to values of another element.
For example I have XML
Code:<people> <family name="Smith"> <origin>England</origin> </family> <family name="Jain"> <origin>India</origin> </family> <family name="DelSol">
-
Adding the Row dynamically to the table
Hello,
I am adding a row dynamically to the table ,
Code:var table = document.getElementById('example'); var rowCount = table.rows.length; var row = table.insertRow(rowCount);
How can i do that.
Please help
Thanks in advance -
Attributes and reflection of the type which they relate
Hi there,
I am currently working with the property grid and I am implementing an indexed category system (sorts categories via index before alphabetically) . I should say that at this point my current solution does work well, however it isn't the prettiest when it comes to specifying the attribute. Which at present looks either like:
[IndexedCategory (typeof(MyClass ), "General", 1)]
or
[IndexedCategory (typeof(MyClass ),... -
Give me a sample program to fetch attribute name and value
i using MSXML to generate an xml ..now i cannot traverse a attribute in xml so help me..with simple program.Thanks -
Accessing class attribute
Hi,
I'm new in python development (NEWBIE). While I was using Cheetah Templates I got a problem about accessing template variables.
I have an object like this (class Template):
Code:>>> class A: ... x = 1 ... y = 2 ... z = 3