Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - steve.capell

Pages: [1]
1
Suggestions and Requests / keyword search for html reports
« on: September 06, 2007, 03:13:14 pm »
How about including a simple indexed keyword search in generated html reports?  We have some very large models and sometimes it is useful to just search across the model content rather than navigate the project browser

2
General Board / Re: "where used" navigation
« on: October 19, 2006, 04:30:09 pm »
It's true that I can find what I want using the search function but users reading genertaed html cant do that.  What i really want is for the generated html to show "where" used for each element so that users can navigate the report.

3
General Board / "where used" navigation
« on: October 18, 2006, 09:39:29 pm »
I'm using EA for infomration modelling with XSD as the target technology - however this question is more general than XSD.  My problem is that I can navigate forward from an attibute of a class to find the the class that represents the type of that attribute.  Hwever I cant see any way to do the reverse - that is to say "show me where this class is used to type an attibute of another class"..  Any ideas would be most welcome!!

4
General Board / displaying attribute tags & constraints
« on: July 25, 2005, 05:06:01 am »
Does anyone know how to get a class diagram to show tagged values and constrainsts at attribute level?

5
Automation Interface, Add-Ins and Tools / XSD Schema Profile
« on: September 09, 2006, 04:44:34 pm »
I am wondering how to force Schema generation of elements within complex types to use global types rather than xsd references when using types from an imported module.  For example, EA generates:

<xs:complexType name="BCCResponse">
 <xs:sequence>
   <xs:element name="BatchResultsPending" type="xs:boolean"/>
       <xs:element name="StatusCode">
           <xs:complexType>
              <xs:sequence>    <xs:element ref="cdt:BatchComputerStatusCode"/>
</xs:sequence>
           </xs:complexType>
      </xs:element>
   </xs:sequence>
</xs:complexType>

But I want:

<xs:complexType name="BCCResponse">
 <xs:sequence>
   <xs:element name="BatchResultsPending" type="xs:boolean"/>
       <xs:element name="StatusCode"
type="cdt:BatchComputerStatusCode"/>
   </xs:sequence>
</xs:complexType>

Note that the type "cdt:BatchComputerStatusCode" is from another namespace and is a complex type definition in the imported module.

Pages: [1]