http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/indexList.html ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/indexList.html b/docs/doc/src/main/resources/doc/schema/3.0/indexList.html deleted file mode 100644 index 8fbc2a4..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/indexList.html +++ /dev/null @@ -1,648 +0,0 @@ -<!DOCTYPE html - PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Schema documentation for component </title> - <link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /><script type="text/javascript"> - <!-- - - - - - - - - - - var button_prefix = 'button_'; - - /** - * Returns an element in the current HTML document. - * - * @param elementID Identifier of HTML element - * @return HTML element object - */ - function getElementObject(elementID) { - var elemObj = null; - if (document.getElementById) { - elemObj = document.getElementById(elementID); - } - return elemObj; - } - - /** - * Switches the state of a collapseable box, e.g. - * if it's opened, it'll be closed, and vice versa. - * - * @param boxID Identifier of box - */ - function switchState(boxID) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(button_prefix + boxID); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (boxObj.style.display == "none") { - // Box is closed, so open it - openBox(boxObj, buttonObj); - } else if (boxObj.style.display == "block") { - // Box is opened, so close it - closeBox(boxObj, buttonObj); - } - } - - /** - * Opens a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function openBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "block"; - - // Change text of button - if (boxObj.style.display == "block") { - buttonObj.src = "images/button_minus.gif"; - } - } - } - - /** - * Closes a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function closeBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "none"; - - // Change text of button - if (boxObj.style.display == "none") { - buttonObj.src = "images/button_plus.gif"; - } - } - } - - function switchStateForAll(buttonObj, boxList) { - if (buttonObj == null) { - // button not found - } else if (buttonObj.value == "+") { - // Expand all - expandAll(boxList); - buttonObj.value = "-"; - } else if (buttonObj.value == "-") { - // Collapse all - collapseAll(boxList); - buttonObj.value = "+"; - } - } - - /** - * Closes all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function collapseAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - closeBox(boxObj, buttonObj); - } - } - - /** - * Open all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function expandAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - openBox(boxObj, buttonObj); - } - } - - /** - * Update the message presented in the title of the html page. - * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'" - * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'" - * - If no split we always present: "Documentation for 'MainSchema.xsd'" - */ - function updatePageTitle(message) { - top.document.title = message; - } - - - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function findAndFloat(id, x_displacement, y_displacement){ - - var element = getElementObject(id); - - window[id + "_obj"] = element; - - if(document.layers) { - element.style = element; - } - - element.current_y = y_displacement; - element.first_time = true; - - element.floatElement = function(){ - // It may be closed by an user action. - - // Target X and Y coordinates. - var x, y; - - var myWidth = 0, myHeight = 0; - if( typeof( window.innerWidth ) == 'number' ) { - //Non-IE - myWidth = window.innerWidth; - myHeight = window.innerHeight; - } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { - //IE 6+ in 'standards compliant mode' - myWidth = document.documentElement.clientWidth; - myHeight = document.documentElement.clientHeight; - } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { - //IE 4 compatible - myWidth = document.body.clientWidth; - myHeight = document.body.clientHeight; - } - - - x = myWidth - x_displacement; - - var ns = (navigator.appName.indexOf("Netscape") != -1); - y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? - document.documentElement.scrollTop : document.body.scrollTop; - y = y + y_displacement; - - // The current y is the current coordinate of the floating element. - // This should be at the limit the y target coordinate. - this.current_y += (y - this.current_y)/1.25; - - // Add the pixels constant after the values - // and move the element. - var px = document.layers ? "" : "px"; - this.style.left = x + px; - this.style.top = this.current_y + px; - - setTimeout(this.id + "_obj.floatElement()", 100); - } - - element.floatElement(); - return element; - } - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function selectTOCGroupBy(id){ - var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type'); - // Make all the tabs invisible. - for (i = 0; i < 3; i++){ - var tab = getElementObject(selectIds[i]); - tab.style.display = 'none'; - } - var selTab = getElementObject(id); - selTab.style.display = 'block'; - } - - - --></script></head> - <body> - <h2><a id="INDEX">Table of Contents</a></h2> - <div class="toc"> - <form action="none"> - <div><span> Group by: - <select id="selectTOC" - onchange="selectTOCGroupBy(this.options[this.selectedIndex].value);"> - <option value="toc_group_by_namespace" selected="selected">Namespace</option> - <option value="toc_group_by_location">Location</option> - <option value="toc_group_by_component_type">Component Type</option></select></span></div> - </form> - <div class="level1" id="toc_group_by_namespace" style="display:none"> - <div> - <div class="level2"> - <p><input id="button_boxIdNamespace1" type="image" value="-" - src="images/button_minus.gif" - onclick="switchState('boxIdNamespace1');" - class="control" /><span class="indexGroupTitle">http://cayenne.apache.org/schema/3.0/modelMap</span></p> - <div id="boxIdNamespace1" style="display:block"> - <div class="horizontalLayout"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <div class="componentGroupTitle">Elements - - </div> - <div id="boxIdNamespace1Element" style="display:block"> - <div><b><a href="modelMap5.html#id46" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:attribute-override')">cay:attribute-override</a></b></div> - <div><b><a href="modelMap27.html#id1" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:data-map')">cay:data-map</a></b></div> - <div><b><a href="modelMap20.html#id19" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute')">cay:db-attribute</a></b></div> - <div><b><a href="modelMap15.html#id80" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute-pair')">cay:db-attribute-pair</a></b></div> - <div><b><a href="modelMap19.html#id18" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-entity')">cay:db-entity</a></b></div> - <div><b><a href="modelMap18.html#id27" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-key-generator')">cay:db-key-generator</a></b></div> - <div><b><a href="modelMap14.html#id79" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-relationship')">cay:db-relationship</a></b></div> - <div><b><a href="modelMap25.html#id100" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ejbql')">cay:ejbql</a></b></div> - <div><b><a href="modelMap21.html#id5" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable')">cay:embeddable</a></b></div> - <div><b><a href="modelMap16.html#id36" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable-attribute-override')">cay:embeddable-attribute-override</a></b></div> - <div><b><a href="modelMap3.html#id35" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embedded-attribute')">cay:embedded-attribute</a></b></div> - <div><b><a href="modelMap6.html#id51" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:entity-listener')">cay:entity-listener</a></b></div> - <div><b><a href="modelMap4.html#id41" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-attribute')">cay:obj-attribute</a></b></div> - <div><b><a href="modelMap1.html#id33" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-entity')">cay:obj-entity</a></b></div> - <div><b><a href="modelMap23.html#id88" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-relationship')">cay:obj-relationship</a></b></div> - <div><b><a href="modelMap26.html#id102" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ordering')">cay:ordering</a></b></div> - <div><b><a href="modelMap13.html#id64" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-load')">cay:post-load</a></b></div> - <div><b><a href="modelMap8.html#id54" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-persist')">cay:post-persist</a></b></div> - <div><b><a href="modelMap12.html#id62" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-remove')">cay:post-remove</a></b></div> - <div><b><a href="modelMap10.html#id58" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-update')">cay:post-update</a></b></div> - <div><b><a href="modelMap7.html#id52" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-persist')">cay:pre-persist</a></b></div> - <div><b><a href="modelMap11.html#id60" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-remove')">cay:pre-remove</a></b></div> - <div><b><a href="modelMap9.html#id56" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-update')">cay:pre-update</a></b></div> - <div><b><a href="modelMap17.html#id11" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:procedure')">cay:procedure</a></b></div> - <div><b><a href="modelMap22.html#id2" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:property')">cay:property</a></b></div> - <div><b><a href="modelMap2.html#id34" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:qualifier')">cay:qualifier</a></b></div> - <div><b><a href="modelMap24.html#id97" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:query')">cay:query</a></b></div> - <div><b><a href="modelMap0.html#id98" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:sql')">cay:sql</a></b></div> - </div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div> - <div style="clear:left"></div> - </div> - </div> - </div> - </div> - <div class="level1" id="toc_group_by_component_type" style="display:block"> - <div> - <div class="horizontalLayout"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <div class="componentGroupTitle">Elements - - </div> - <div id="Element" style="display:block"> - <div><b><a href="modelMap5.html#id46" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:attribute-override')">cay:attribute-override</a></b></div> - <div><b><a href="modelMap27.html#id1" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:data-map')">cay:data-map</a></b></div> - <div><b><a href="modelMap20.html#id19" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute')">cay:db-attribute</a></b></div> - <div><b><a href="modelMap15.html#id80" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute-pair')">cay:db-attribute-pair</a></b></div> - <div><b><a href="modelMap19.html#id18" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-entity')">cay:db-entity</a></b></div> - <div><b><a href="modelMap18.html#id27" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-key-generator')">cay:db-key-generator</a></b></div> - <div><b><a href="modelMap14.html#id79" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-relationship')">cay:db-relationship</a></b></div> - <div><b><a href="modelMap25.html#id100" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ejbql')">cay:ejbql</a></b></div> - <div><b><a href="modelMap21.html#id5" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable')">cay:embeddable</a></b></div> - <div><b><a href="modelMap16.html#id36" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable-attribute-override')">cay:embeddable-attribute-override</a></b></div> - <div><b><a href="modelMap3.html#id35" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embedded-attribute')">cay:embedded-attribute</a></b></div> - <div><b><a href="modelMap6.html#id51" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:entity-listener')">cay:entity-listener</a></b></div> - <div><b><a href="modelMap4.html#id41" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-attribute')">cay:obj-attribute</a></b></div> - <div><b><a href="modelMap1.html#id33" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-entity')">cay:obj-entity</a></b></div> - <div><b><a href="modelMap23.html#id88" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-relationship')">cay:obj-relationship</a></b></div> - <div><b><a href="modelMap26.html#id102" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ordering')">cay:ordering</a></b></div> - <div><b><a href="modelMap13.html#id64" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-load')">cay:post-load</a></b></div> - <div><b><a href="modelMap8.html#id54" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-persist')">cay:post-persist</a></b></div> - <div><b><a href="modelMap12.html#id62" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-remove')">cay:post-remove</a></b></div> - <div><b><a href="modelMap10.html#id58" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-update')">cay:post-update</a></b></div> - <div><b><a href="modelMap7.html#id52" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-persist')">cay:pre-persist</a></b></div> - <div><b><a href="modelMap11.html#id60" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-remove')">cay:pre-remove</a></b></div> - <div><b><a href="modelMap9.html#id56" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-update')">cay:pre-update</a></b></div> - <div><b><a href="modelMap17.html#id11" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:procedure')">cay:procedure</a></b></div> - <div><b><a href="modelMap22.html#id2" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:property')">cay:property</a></b></div> - <div><b><a href="modelMap2.html#id34" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:qualifier')">cay:qualifier</a></b></div> - <div><b><a href="modelMap24.html#id97" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:query')">cay:query</a></b></div> - <div><b><a href="modelMap0.html#id98" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:sql')">cay:sql</a></b></div> - </div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div> - <div style="clear:left"></div> - </div> - </div> - <div class="level1" id="toc_group_by_location" style="display:none"> - <div> - <div class="level2"> - <p><input id="button_modelMap.xsd" type="image" value="-" src="images/button_minus.gif" - onclick="switchState('modelMap.xsd');" - class="control" /><span class="indexGroupTitle">modelMap.xsd</span></p> - <div id="modelMap.xsd" style="display:block"> - <div class="horizontalLayout"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <div class="componentGroupTitle">Elements - - </div> - <div id="modelMap.xsdElement" style="display:block"> - <div><b><a href="modelMap5.html#id46" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:attribute-override')">cay:attribute-override</a></b></div> - <div><b><a href="modelMap27.html#id1" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:data-map')">cay:data-map</a></b></div> - <div><b><a href="modelMap20.html#id19" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute')">cay:db-attribute</a></b></div> - <div><b><a href="modelMap15.html#id80" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-attribute-pair')">cay:db-attribute-pair</a></b></div> - <div><b><a href="modelMap19.html#id18" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-entity')">cay:db-entity</a></b></div> - <div><b><a href="modelMap18.html#id27" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-key-generator')">cay:db-key-generator</a></b></div> - <div><b><a href="modelMap14.html#id79" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:db-relationship')">cay:db-relationship</a></b></div> - <div><b><a href="modelMap25.html#id100" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ejbql')">cay:ejbql</a></b></div> - <div><b><a href="modelMap21.html#id5" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable')">cay:embeddable</a></b></div> - <div><b><a href="modelMap16.html#id36" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embeddable-attribute-override')">cay:embeddable-attribute-override</a></b></div> - <div><b><a href="modelMap3.html#id35" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:embedded-attribute')">cay:embedded-attribute</a></b></div> - <div><b><a href="modelMap6.html#id51" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:entity-listener')">cay:entity-listener</a></b></div> - <div><b><a href="modelMap4.html#id41" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-attribute')">cay:obj-attribute</a></b></div> - <div><b><a href="modelMap1.html#id33" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-entity')">cay:obj-entity</a></b></div> - <div><b><a href="modelMap23.html#id88" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-relationship')">cay:obj-relationship</a></b></div> - <div><b><a href="modelMap26.html#id102" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:ordering')">cay:ordering</a></b></div> - <div><b><a href="modelMap13.html#id64" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-load')">cay:post-load</a></b></div> - <div><b><a href="modelMap8.html#id54" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-persist')">cay:post-persist</a></b></div> - <div><b><a href="modelMap12.html#id62" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-remove')">cay:post-remove</a></b></div> - <div><b><a href="modelMap10.html#id58" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-update')">cay:post-update</a></b></div> - <div><b><a href="modelMap7.html#id52" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-persist')">cay:pre-persist</a></b></div> - <div><b><a href="modelMap11.html#id60" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-remove')">cay:pre-remove</a></b></div> - <div><b><a href="modelMap9.html#id56" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-update')">cay:pre-update</a></b></div> - <div><b><a href="modelMap17.html#id11" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:procedure')">cay:procedure</a></b></div> - <div><b><a href="modelMap22.html#id2" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:property')">cay:property</a></b></div> - <div><b><a href="modelMap2.html#id34" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:qualifier')">cay:qualifier</a></b></div> - <div><b><a href="modelMap24.html#id97" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:query')">cay:query</a></b></div> - <div><b><a href="modelMap0.html#id98" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:sql')">cay:sql</a></b></div> - </div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div> - <div style="clear:left"></div> - </div> - </div> - </div> - </div> - </div> - <div class="footer"> - <hr /> - <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor. - </div> - </div><script type="text/javascript"> - <!-- - // The namespace is the selected option in the TOC combo. - - // The corresponding div is already visible conf. to its style attr. - - var selectToc = getElementObject('selectTOC'); - if(selectToc != null){ - // It can be null when having chunking, the combo of the TOC is in another frame. - selectToc.selectedIndex = 2; - } - - - // Floats the toolbar. - var globalControls = getElementObject("global_controls"); - - if(globalControls != null){ - var browser=navigator.appName; - var version = parseFloat(navigator.appVersion.split('MSIE')[1]); - - var IE6 = false; - if ((browser=="Microsoft Internet Explorer") && (version < 7)){ - IE6 = true; - } - - //alert (IE6 + " |V| " + version); - - if(IE6){ - // On IE 6 the 'fixed' property is not supported. We must use javascript. - globalControls.style.position='absolute'; - // The global controls will do not exist in the TOC frame, when chunking. - findAndFloat("global_controls", 225, 30); - } else { - globalControls.style.position='fixed'; - } - - globalControls.style.right='0'; - } - --></script></body> -</html> \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/modelMap.html ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/modelMap.html b/docs/doc/src/main/resources/doc/schema/3.0/modelMap.html deleted file mode 100644 index 317c8eb..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/modelMap.html +++ /dev/null @@ -1,4 +0,0 @@ - -<!DOCTYPE html - PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Schema documentation for component modelMap.xsd</title><link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /></head><frameset cols="20%, 80%"><frame name="indexFrame" src="indexList.html" /><frame name="mainFrame" src="modelMap28.html" /></frameset></html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/modelMap0.html ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/modelMap0.html b/docs/doc/src/main/resources/doc/schema/3.0/modelMap0.html deleted file mode 100644 index 51fd666..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/modelMap0.html +++ /dev/null @@ -1,614 +0,0 @@ -<!DOCTYPE html - PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Schema documentation for component cay:sql</title> - <link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /><script type="text/javascript"> - <!-- - var propertiesBoxes= new Array('properties_id98', - 'properties_id99'); - - - var usedByBoxes= new Array('usedBy_id98', - 'usedBy_id99'); - - var sourceBoxes= new Array('source_id98', - 'source_id99'); - - - var diagramBoxes= new Array('diagram_id98'); - - var annotationBoxes= new Array('annotations_id98'); - - var attributesBoxes= new Array('attributes_id98'); - - - var button_prefix = 'button_'; - - /** - * Returns an element in the current HTML document. - * - * @param elementID Identifier of HTML element - * @return HTML element object - */ - function getElementObject(elementID) { - var elemObj = null; - if (document.getElementById) { - elemObj = document.getElementById(elementID); - } - return elemObj; - } - - /** - * Switches the state of a collapseable box, e.g. - * if it's opened, it'll be closed, and vice versa. - * - * @param boxID Identifier of box - */ - function switchState(boxID) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(button_prefix + boxID); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (boxObj.style.display == "none") { - // Box is closed, so open it - openBox(boxObj, buttonObj); - } else if (boxObj.style.display == "block") { - // Box is opened, so close it - closeBox(boxObj, buttonObj); - } - } - - /** - * Opens a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function openBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "block"; - - // Change text of button - if (boxObj.style.display == "block") { - buttonObj.src = "images/button_minus.gif"; - } - } - } - - /** - * Closes a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function closeBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "none"; - - // Change text of button - if (boxObj.style.display == "none") { - buttonObj.src = "images/button_plus.gif"; - } - } - } - - function switchStateForAll(buttonObj, boxList) { - if (buttonObj == null) { - // button not found - } else if (buttonObj.value == "+") { - // Expand all - expandAll(boxList); - buttonObj.value = "-"; - } else if (buttonObj.value == "-") { - // Collapse all - collapseAll(boxList); - buttonObj.value = "+"; - } - } - - /** - * Closes all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function collapseAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - closeBox(boxObj, buttonObj); - } - } - - /** - * Open all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function expandAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - openBox(boxObj, buttonObj); - } - } - - /** - * Update the message presented in the title of the html page. - * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'" - * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'" - * - If no split we always present: "Documentation for 'MainSchema.xsd'" - */ - function updatePageTitle(message) { - top.document.title = message; - } - - - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function findAndFloat(id, x_displacement, y_displacement){ - - var element = getElementObject(id); - - window[id + "_obj"] = element; - - if(document.layers) { - element.style = element; - } - - element.current_y = y_displacement; - element.first_time = true; - - element.floatElement = function(){ - // It may be closed by an user action. - - // Target X and Y coordinates. - var x, y; - - var myWidth = 0, myHeight = 0; - if( typeof( window.innerWidth ) == 'number' ) { - //Non-IE - myWidth = window.innerWidth; - myHeight = window.innerHeight; - } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { - //IE 6+ in 'standards compliant mode' - myWidth = document.documentElement.clientWidth; - myHeight = document.documentElement.clientHeight; - } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { - //IE 4 compatible - myWidth = document.body.clientWidth; - myHeight = document.body.clientHeight; - } - - - x = myWidth - x_displacement; - - var ns = (navigator.appName.indexOf("Netscape") != -1); - y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? - document.documentElement.scrollTop : document.body.scrollTop; - y = y + y_displacement; - - // The current y is the current coordinate of the floating element. - // This should be at the limit the y target coordinate. - this.current_y += (y - this.current_y)/1.25; - - // Add the pixels constant after the values - // and move the element. - var px = document.layers ? "" : "px"; - this.style.left = x + px; - this.style.top = this.current_y + px; - - setTimeout(this.id + "_obj.floatElement()", 100); - } - - element.floatElement(); - return element; - } - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function selectTOCGroupBy(id){ - var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type'); - // Make all the tabs invisible. - for (i = 0; i < 3; i++){ - var tab = getElementObject(selectIds[i]); - tab.style.display = 'none'; - } - var selTab = getElementObject(id); - selTab.style.display = 'block'; - } - - - --></script></head> - <body> - <div id="global_controls" class="globalControls" style="position:absolute;right:0;"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <h3>Showing:</h3> - <table> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, annotationBoxes);" - class="control" /></span><span class="globalControlName">Annotations</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, attributesBoxes);" - class="control" /></span><span class="globalControlName">Attributes </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, diagramBoxes);" - class="control" /></span><span class="globalControlName">Diagrams</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, propertiesBoxes);" - class="control" /></span><span class="globalControlName">Properties </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, sourceBoxes);" - class="control" /></span><span class="globalControlName">Source</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, usedByBoxes);" - class="control" /></span><span class="globalControlName">Used by </span></td> - </tr> - </table> - <div align="right"><span><input type="button" - onclick="getElementObject('global_controls').style.display = 'none';" - value="Close" /></span></div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div><a id="id98"></a><div class="componentTitle">Element <span class="qname">cay:sql</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>http://cayenne.apache.org/schema/3.0/modelMap</td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Annotations</b></div> - <div class="floatRight"><input id="button_annotations_id98" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('annotations_id98');" - class="control" /></div> - </td> - <td> - <div id="annotations_id98" style="display:block"> - <div class="annotation"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenText">Defines arbitrary SQL statement. Note that SQL statement can be customized for different SQL dialects per DbAdapter class. If no adapter-specific statement is found, the one with no adapter label is used by default.</span></pre></td> - </tr> - </table> - </div> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Diagram</b></div> - <div class="floatRight"><input id="button_diagram_id98" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('diagram_id98');" - class="control" /></div> - </td> - <td class="diagram"> - <div id="diagram_id98" style="display:block"><img alt="Diagram" border="0" src="images/modelMap.html1.jpeg" - usemap="#modelMap_46_html1" /><map name="modelMap_46_html1" id="modelMap_46_html1"> - <area alt="modelMap0.tmp#id99" href="modelMap0.html#id99" coords="231,88,353,130" /></map></div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Type</b></td> - <td>extension of <b>xs:string</b></td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id98" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id98');" - class="control" /></div> - </td> - <td> - <div id="properties_id98" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">content: - - </td> - <td><b>complex</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id98" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id98');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id98" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Element </td> - <td><b><a href="modelMap24.html#id97" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:query')">cay:query</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Attributes</b></div> - <div class="floatRight"><input id="button_attributes_id98" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('attributes_id98');" - class="control" /></div> - </td> - <td> - <div id="attributes_id98" style="display:block"> - <table class="attributesTable"> - <thead> - <tr> - <th>QName</th> - <th>Type</th> - <th>Fixed</th> - <th>Default</th> - <th>Use</th> - <th>Annotation</th> - </tr> - </thead> - <tr> - <td class="firstColumn"><b><a href="modelMap0.html#id99" target="mainFrame" title="No namespace" - onclick="updatePageTitle('Schema documentation for component adapter-class')">adapter-class</a></b></td> - <td><b>xs:string</b></td> - <td></td> - <td></td> - <td>optional</td> - <td> - <div class="annotation"></div> - </td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id98" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id98');" - class="control" /></div> - </td> - <td> - <div id="source_id98" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"sql"</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:annotation</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:documentation</span><span class="tokenElement">></span><span class="tokenText" style="white-space:normal">Defines arbitrary SQL statement. Note that SQL statement can be customized for different SQL dialects per DbAdapter class. If no adapter-specific statement is found, the one with no adapter label is used by default.</span><span class="tokenElement"></xs:documentation></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:annotation></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:complexType</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:simpleContent</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:extension</span><span class="tokenAttrName"> base=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"adapter-class"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:extension></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:simpleContent></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:complexType></span><span class="tokenIndent"> -</span><span class="tokenElement"></xs:element></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table><a id="id99"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="modelMap0.html#id98" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:sql')">cay:sql</a></b>/@adapter-class</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>No namespace</td> - </tr> - <tr> - <td class="firstColumn"><b>Type</b></td> - <td><b>xs:string</b></td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id99" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id99');" - class="control" /></div> - </td> - <td> - <div id="properties_id99" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">content: - - </td> - <td><b>simple</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id99" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id99');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id99" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Element </td> - <td><b><a href="modelMap0.html#id98" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:sql')">cay:sql</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id99" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id99');" - class="control" /></div> - </td> - <td> - <div id="source_id99" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"adapter-class"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - <div class="footer"> - <hr /> - <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor. - </div> - </div><script type="text/javascript"> - <!-- - // The namespace is the selected option in the TOC combo. - - // The corresponding div is already visible conf. to its style attr. - - var selectToc = getElementObject('selectTOC'); - if(selectToc != null){ - // It can be null when having chunking, the combo of the TOC is in another frame. - selectToc.selectedIndex = 2; - } - - - // Floats the toolbar. - var globalControls = getElementObject("global_controls"); - - if(globalControls != null){ - var browser=navigator.appName; - var version = parseFloat(navigator.appVersion.split('MSIE')[1]); - - var IE6 = false; - if ((browser=="Microsoft Internet Explorer") && (version < 7)){ - IE6 = true; - } - - //alert (IE6 + " |V| " + version); - - if(IE6){ - // On IE 6 the 'fixed' property is not supported. We must use javascript. - globalControls.style.position='absolute'; - // The global controls will do not exist in the TOC frame, when chunking. - findAndFloat("global_controls", 225, 30); - } else { - globalControls.style.position='fixed'; - } - - globalControls.style.right='0'; - } - --></script></body> -</html> \ No newline at end of file