This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 169680 - Schema designer should indicate sequence bounds
Summary: Schema designer should indicate sequence bounds
Status: NEW
Alias: None
Product: xml
Classification: Unclassified
Component: Schema Tools (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-08-02 00:17 UTC by kitfox
Modified: 2009-08-03 11:03 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description kitfox 2009-08-02 00:17:37 UTC
When using the 'Schema' view of the schema editor in NB, for any complex element that contains a sequence, there is
helpful text printed beside it indicating the bounds of the sequence.  (Eg, "[1..1]", "[0..*]")

            <xsd:element name="tr" type="tns:tableRowType" minOccurs="0" maxOccurs="unbounded"></xsd:element>

At the moment, if you set these properties on the sequence element itself, no such helpful text is displayed.  

        <xsd:sequence minOccurs="0" maxOccurs="unbounded">
        </xsd:sequence>

Having this displayed in a similar manner in the Schema view would be very helpful.

Btw: I love the schema designer!  It's a great tool.