Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 2: Line 2:
  
 
* Implement registry classes
 
* Implement registry classes
 +
* Add some kind of ISimpleValue factory.
 +
** This would be used when (either an IdAS consumer or provider) one wishes to create an ISimpleValue given a URI (either the higgins value type like higgins:stringSimpleValue, or the xml type like xml:string), and a Java object (like String).
  
 
{| border="1" cellpadding="2"
 
{| border="1" cellpadding="2"

Revision as of 20:55, 10 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
  • Add some kind of ISimpleValue factory.
    • This would be used when (either an IdAS consumer or provider) one wishes to create an ISimpleValue given a URI (either the higgins value type like higgins:stringSimpleValue, or the xml type like xml:string), and a Java object (like String).
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