Changes between Version 13 and Version 14 of ApertureDataSource


Ignore:
Timestamp:
10/12/05 14:01:45 (19 years ago)
Author:
dburkhar
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ApertureDataSource

    v13 v14  
    7070 
    7171== Java Interface == 
     72 
    7273{{{ 
    7374public interface DataSource { 
     
    104105         * Set a configuration attribute supported by the specific datasource 
    105106         * implementation class. Unknown elements and incorrectly encoded attributes 
    106      * end element text are silently ignored. 
    107      *  
    108      * @param attributeName The XML element name used to identify the configuration attribute. 
    109      * @param atts The element's attributes, encoded as a Map of key-value-pairs. 
    110      * @param text the element's textual contents.  
     107         * end element text are silently ignored. 
     108         *  
     109         * @param attributeName The XML element name used to identify the configuration attribute. 
     110         * @param atts The element's attributes, encoded as a Map of key-value-pairs. 
     111         * @param text the element's textual contents.  
    111112         */ 
    112113        public void setConfigAttribute(String attributeName, Map<String, String> atts, String text); 
     
    114115        /** 
    115116         * Writes all config attributes of the datasource to a given XML writer. 
    116      *  
    117      * @param xmlWriter the XMLWriter to which the config attributes will be written. 
    118      * @throws IOException passed on by the XMLWriter. 
     117         *  
     118         * @param xmlWriter the XMLWriter to which the config attributes will be written. 
     119         * @throws IOException passed on by the XMLWriter. 
    119120         */ 
    120121        public void writeConfigAttributes(XmlWriter xmlWriter) throws IOException;