Difference between revisions of "User:Frank Schönheit/Changing API incompatibly"

From Apache OpenOffice Wiki
Jump to: navigation, search
(various)
(various)
Line 8: Line 8:
 
* various  [http://api.openoffice.org/docs/common/ref/com/sun/star/sdbc/XDatabaseMetaData.html XDatabaseMetaData] methods should take <code>any</code>s instead of strings. For instance, getTables should take an <code>any</code> for the schemaPattern, where <code>NULL</code> indicates "all schemas", as in JDBC.
 
* various  [http://api.openoffice.org/docs/common/ref/com/sun/star/sdbc/XDatabaseMetaData.html XDatabaseMetaData] methods should take <code>any</code>s instead of strings. For instance, getTables should take an <code>any</code> for the schemaPattern, where <code>NULL</code> indicates "all schemas", as in JDBC.
 
* [http://api.openoffice.org/docs/common/ref/com/sun/star/beans/XPropertyContainer.html#addProperty XPropertyContainer::addProperty] should allow for <code>NULL</code> defaults, by separating between the type of a property, and its default.
 
* [http://api.openoffice.org/docs/common/ref/com/sun/star/beans/XPropertyContainer.html#addProperty XPropertyContainer::addProperty] should allow for <code>NULL</code> defaults, by separating between the type of a property, and its default.
 +
* [http://api.openoffice.org/docs/common/ref/com/sun/star/container/XSet.html XSet] should allow for for non-mutable implementations, by throwing a NoSupportException at the insert/remove method
  
 
=== Exception declarations ===  
 
=== Exception declarations ===  
  
 
* [http://api.openoffice.org/docs/common/ref/com/sun/star/document/XFilter.html#filter XFilter::filter] should be allowed to throw exceptions (<code>InvalidArgument</code>, <code>InsufficentArguments</code>, or the like)
 
* [http://api.openoffice.org/docs/common/ref/com/sun/star/document/XFilter.html#filter XFilter::filter] should be allowed to throw exceptions (<code>InvalidArgument</code>, <code>InsufficentArguments</code>, or the like)

Revision as of 20:33, 6 March 2009

That's just my personal list of UNO APIs I would like to change incompatibly, if we are ever allowed to. Note there's much more than this. I just can't remember at the moment, but when working with API, I regularily encounter things which now will hopefully appear here over time.

various

  • XRowSetSupplier: setRowSet should be allowed to throw a NoSupportException
  • There should be an interface merging XRow and XResultSet. Both are nearly always used together, and having to work with two interfaces, one for navigating through the result set, and one for querying the actual values, sucks.
  • XContent should have direct access to selected properties. Asking for a given property by executing a command named getPropertyValues, which returns a XRow/XResultSet, through which you need to navigate, is absolutely ridiculous.
  • various XDatabaseMetaData methods should take anys instead of strings. For instance, getTables should take an any for the schemaPattern, where NULL indicates "all schemas", as in JDBC.
  • XPropertyContainer::addProperty should allow for NULL defaults, by separating between the type of a property, and its default.
  • XSet should allow for for non-mutable implementations, by throwing a NoSupportException at the insert/remove method

Exception declarations

  • XFilter::filter should be allowed to throw exceptions (InvalidArgument, InsufficentArguments, or the like)
Personal tools