Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Idas Implementation Todo"

 
Line 1: Line 1:
 
This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the [[Idas Architectural Todo]] page.
 
This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the [[Idas Architectural Todo]] page.
  
* Implement IdASEndpoint
+
* Implement registry classes
* Implement IdASException and subclasses
+
 
 +
{| border="1" cellpadding="2"
 +
|+ Generated from tasks in code
 +
! Description !! Resource !! In Folder || Location
 +
|-
 +
|make sure getCanonical() meets the canonical rules for xsd:float. || BasicValueDouble.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 23
 +
|-
 +
|make sure getCanonical() meets the canonical rules for xsd:float. || BasicValueFloat.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 21
 +
|-
 +
|make sure getCanonical() meets the canonical rules for xsd:integer. Nothing in the BigInteger Javadoc leads me to believe it's incorrect. || BasicValueInteger.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 23
 +
|-
 +
|make sure this meets the canonical rules for xsd:base64Binary || BasicValueBase64Binary.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 51
 +
|-
 +
|make sure this meets the canonical rules for xsd:base64Binary || BasicValueHexBinary.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 47
 +
|-
 +
|provide a way in which a consumer can discover allowed/supported comparators. || IFilterAssertion.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas || line 34
 +
|-
 +
|This does not enforce xsd:language restrictions yet. || BasicValueLanguage.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
 +
|-
 +
|This does not enforce xsd:Name restrictions yet. || BasicValueName.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 29
 +
|-
 +
|This does not enforce xsd:NCName restrictions yet. || BasicValueNCName.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
 +
|-
 +
|This does not enforce xsd:NMTOKEN restrictions yet. || BasicValueNMTOKEN.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
 +
|}

Revision as of 10:14, 5 October 2006

This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the Idas Architectural Todo page.

  • Implement registry classes
Generated from tasks in code
Description Resource In Folder Location
make sure getCanonical() meets the canonical rules for xsd:float. BasicValueDouble.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 23
make sure getCanonical() meets the canonical rules for xsd:float. BasicValueFloat.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 21
make sure getCanonical() meets the canonical rules for xsd:integer. Nothing in the BigInteger Javadoc leads me to believe it's incorrect. BasicValueInteger.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 23
make sure this meets the canonical rules for xsd:base64Binary BasicValueBase64Binary.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 51
make sure this meets the canonical rules for xsd:base64Binary BasicValueHexBinary.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 47
provide a way in which a consumer can discover allowed/supported comparators. IFilterAssertion.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas line 34
This does not enforce xsd:language restrictions yet. BasicValueLanguage.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 22
This does not enforce xsd:Name restrictions yet. BasicValueName.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 29
This does not enforce xsd:NCName restrictions yet. BasicValueNCName.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 22
This does not enforce xsd:NMTOKEN restrictions yet. BasicValueNMTOKEN.java org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl line 22

Back to the top