Changes between Version 13 and Version 14 of ApertureDataSource
- Timestamp:
- 10/12/05 14:01:45 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureDataSource
v13 v14 70 70 71 71 == Java Interface == 72 72 73 {{{ 73 74 public interface DataSource { … … 104 105 * Set a configuration attribute supported by the specific datasource 105 106 * 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. 111 112 */ 112 113 public void setConfigAttribute(String attributeName, Map<String, String> atts, String text); … … 114 115 /** 115 116 * 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. 119 120 */ 120 121 public void writeConfigAttributes(XmlWriter xmlWriter) throws IOException;