Search Result

Collapse
7 results in 0.0039 seconds.
Keywords
Members
Tags
attributes
  •  

  • manijay
    started a topic Class Diagram Question

    Class Diagram Question

    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...
    See more | Go to post

  • nathj
    started a topic How to access element attributes using JSP and XML?
    in Java

    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">
    ...
    See more | Go to post

  • mruedy
    started a topic XML schema restriction to values of another element
    in XML

    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">
    ...
    See more | Go to post
    Last edited by Dormilich; May 5 '10, 10:02 PM. Reason: Please use [code] tags when posting code

  • romepatel
    started a topic Adding the Row dynamically to the table

    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);
    now i want to set attributes to the new row added such as id, class etc

    How can i do that.

    Please help

    Thanks in advance
    See more | Go to post
    Last edited by Dormilich; Dec 28 '09, 11:39 AM. Reason: Please use [code] tags when posting code

  • 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 ),...
    See more | Go to post

  • 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
    See more | Go to post

  • Rafael Justo
    started a topic Accessing class attribute

    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
    But I'm just going to know the attributes names "on the fly". How can I set/get this attributes if I have just...
    See more | Go to post
Working...