You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by bu...@apache.org on 2015/08/22 17:35:32 UTC

svn commit: r962708 [2/30] - in /websites/staging/tamaya/trunk/content: ./ documentation/ javadoc/api/java7/ javadoc/api/java7/org/apache/tamaya/ javadoc/api/java7/org/apache/tamaya/spi/ javadoc/api/java8/ javadoc/api/java8/org/apache/tamaya/ javadoc/a...

Modified: websites/staging/tamaya/trunk/content/documentation/mod_resources.html
==============================================================================
--- websites/staging/tamaya/trunk/content/documentation/mod_resources.html (original)
+++ websites/staging/tamaya/trunk/content/documentation/mod_resources.html Sat Aug 22 15:35:30 2015
@@ -5,7 +5,7 @@
 <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <meta name="generator" content="Asciidoctor 1.5.2">
-<title>Untitled</title>
+<title>Apache Tamaya&#8201;&#8212;&#8201;Extension: Resources</title>
 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
 <style>
 /* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
@@ -502,24 +502,25 @@ table.CodeRay td.code>pre{padding:0}
 </head>
 <body class="article">
 <div id="header">
+<h1>Apache Tamaya&#8201;&#8212;&#8201;Extension: Resources</h1>
 </div>
 <div id="content">
-<div class="paragraph">
-<p>Apache Tamaya&#8201;&#8212;&#8201;Extension: Resources</p>
-</div>
-<div class="exampleblock">
-<div class="content">
+<div id="preamble">
+<div class="sectionbody">
 <hr>
 <div style="page-break-after: always;"></div>
 <!-- toc disabled -->
 <div style="page-break-after: always;"></div>
 <div style="page-break-after: always;"></div>
-<div id="Core" class="paragraph">
-<p>== Tamaya Resources (Extension Module)
-=== Overview</p>
 </div>
+</div>
+<div class="sect1">
+<h2 id="Core">Tamaya Resources (Extension Module)</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_overview">Overview</h3>
 <div class="paragraph">
-<p>Tamaya Resources is an extension module. Refer to the <a href=":modules.html" title="Apache Tamaya Extension: Resources">extensions documentation</a> for further details
+<p>Tamaya Resources is an extension module. Refer to the <a href="modules.html" title="Apache Tamaya Extension: Resources">extensions documentation</a> for further details
 about modules.</p>
 </div>
 <div class="paragraph">
@@ -531,20 +532,25 @@ ant-styled resource patterns. To use thi
 <pre class="CodeRay highlight"><code data-lang="listing">&lt;dependency&gt;
   &lt;grooupId&gt;org.apache.tamaya.ext&lt;/groupId&gt;
   &lt;artifactId&gt;tamaya-resources&lt;/artifactId&gt;
-  &lt;version&gt;CURRENT_VERSION&lt;/version&gt;
+  &lt;version&gt;{tamayaVersion}&lt;/version&gt;
 &lt;/dependency&gt;</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p>The module&#8217;s main entry point is the singleton class org.apache.tamaya.resource.Resources. This class provides
-access to a ResourceResolver instance:</p>
+<p>The module&#8217;s main entry point is the singleton class org.apache.tamaya.resource.ConfigResources. This class
+provides access to a ResourceResolver instance:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="java">ResourceResolver resolver = ConfigResources.getResourceResolver();</code></pre>
+</div>
 </div>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">interface</span> <span class="class">ResourceResolver</span> {
-    <span class="keyword">default</span> <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">Collection</span>&lt;<span class="predefined-type">String</span>&gt; expressions) {...}
-    <span class="keyword">default</span> <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">String</span>... expressions) {...}
-    <span class="keyword">default</span> <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">ClassLoader</span> classLoader, <span class="predefined-type">String</span>... expressions){...}
+    <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">Collection</span>&lt;<span class="predefined-type">String</span>&gt; expressions) {...}
+    <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">String</span>... expressions) {...}
+    <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">ClassLoader</span> classLoader, <span class="predefined-type">String</span>... expressions){...}
     <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">URL</span>&gt; getResources(<span class="predefined-type">ClassLoader</span> classLoader, <span class="predefined-type">Collection</span>&lt;<span class="predefined-type">String</span>&gt; expressions);
 }</code></pre>
 </div>
@@ -554,10 +560,27 @@ access to a ResourceResolver instance:</
 current classpath the target ClassLoader to be used can be passed additionally.</p>
 </div>
 <div class="paragraph">
-<p>=== Valid Expression Examples</p>
+<p>The default implementation provides resource resolution mechanism similar to the functionality offered by Spring.
+So by default resources can be looked up</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>from files</p>
+</li>
+<li>
+<p>from the classpath</p>
+</li>
+<li>
+<p>optionally ant-styled expressions can be used.</p>
+</li>
+</ul>
 </div>
+</div>
+<div class="sect2">
+<h3 id="_valid_expression_examples">Valid Expression Examples</h3>
 <div class="paragraph">
-<p>There are numerous ways how a resource pattern can be defined, Following the most important variants
+<p>There are numerous ways how a resource pattern can be defined. Following the most important variants
 are listed:</p>
 </div>
 <div class="listingblock">
@@ -591,9 +614,9 @@ myroot/b*/b?/*.file</code></pre>
 in the classpath. This can be used to implement PropertySourceProvider implementations that are based on
 corresponding resource path patterns instead of concrete files.</p>
 </div>
-<div class="paragraph">
-<p>=== Overall Usage Example</p>
 </div>
+<div class="sect2">
+<h3 id="_overall_usage_example">Overall Usage Example</h3>
 <div class="paragraph">
 <p>Given the functionality we can easily implement a PropertySourceProvider that reads all files from a classpath
 location, hereby traversing down all folders:</p>
@@ -650,12 +673,25 @@ location, hereby traversing down all fol
 </div>
 </div>
 </div>
+<div class="sect2">
+<h3 id="_spi">SPI</h3>
+<div class="paragraph">
+<p>The ResourceResolver that is returned by the ConfigResources singleton is determined by the
+current ServiceContext, by default you can replace the default implementation by registering an
+alternate implemenetation with an overriding @Priority annotation added using the ServiceLoader.</p>
+</div>
+<div class="paragraph">
+<p>Additionally a BaseResourceResolver class can be used to reduce the amount of code to be written
+on your own.</p>
+</div>
+</div>
+</div>
 </div>
 </div>
 <div id="footer">
 <div id="footer-text">
 Version 0.1.1<br>
-Last updated 2015-03-03 17:28:30 MEZ
+Last updated 2015-08-04 21:27:21 MESZ
 </div>
 </div>
 </body>

Modified: websites/staging/tamaya/trunk/content/documentation/modules.html
==============================================================================
--- websites/staging/tamaya/trunk/content/documentation/modules.html (original)
+++ websites/staging/tamaya/trunk/content/documentation/modules.html Sat Aug 22 15:35:30 2015
@@ -507,7 +507,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="details">
 <span id="author" class="author">Anatole Tresch</span><br>
 <span id="email" class="email">&lt;<a href="mailto:anatole@apache.org" title="Apache Tamaya Extension Modules">anatole@apache.org</a>&gt;</span><br>
-<span id="revnumber">version 0.1-SNAPSHOT,</span>
+<span id="revnumber">version 0.1-incubating,</span>
 <span id="revdate">March 2015</span>
 <br><span id="revremark">Incubator</span>
 </div>
@@ -525,13 +525,41 @@ table.CodeRay td.code>pre{padding:0}
 <h2 id="_mature_extensions">1. Mature Extensions</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>N/A</p>
+<p>Mature extensions have a stable API and SPI, similar to the API and Implementations provided.</p>
 </div>
+<table class="tableblock frame-1 grid-all spread">
+<colgroup>
+<col style="width: 33%;">
+<col style="width: 33%;">
+<col style="width: 33%;">
+</colgroup>
+<thead>
+<tr>
+<th class="tableblock halign-left valign-top"><em>Artifact</em></th>
+<th class="tableblock halign-left valign-top"><em>Description</em></th>
+<th class="tableblock halign-left valign-top"><em>Links</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td class="tableblock halign-left valign-top"></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">N/A: currently no extensions have reached that maturity level.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">-</p></td>
+</tr>
+</tbody>
+</table>
 </div>
 </div>
 <div class="sect1">
 <h2 id="_draft_extensions">2. Draft Extensions</h2>
 <div class="sectionbody">
+<div class="paragraph">
+<p>Extensions in <em>draft state</em> are tested well and normally should have rather stable APIs. Nevertheless API changes may
+still occurr, but we try to prevent such changes if possible.</p>
+</div>
+<div class="paragraph">
+<p>NOTE All extensions, despite the <em>tamaya-builder</em> module, currently run on Java 7 as well as on Java 8.</p>
+</div>
 <table class="tableblock frame-1 grid-all spread">
 <colgroup>
 <col style="width: 33%;">
@@ -547,6 +575,11 @@ table.CodeRay td.code>pre{padding:0}
 </thead>
 <tbody>
 <tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><code>org.apache.tamaya.ext:tamaya-builder</code></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Provides a fluent-style builder for configurations</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="mod_builder.html">Documentation</a></p></td>
+</tr>
+<tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>org.apache.tamaya.ext:tamaya-resources</code></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Provides ant-style resource path resolution</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="mod_resources.html">Documentation</a></p></td>
@@ -571,6 +604,11 @@ table.CodeRay td.code>pre{padding:0}
 <td class="tableblock halign-left valign-top"><p class="tableblock">Provides configuration injection services and congiruation template support.</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="mod_injection.html">Documentation</a></p></td>
 </tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><code>org.apache.tamaya.ext:tamaya-json</code></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Provides format support for JSON based configuration.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="mode_json.html">Documentation</a></p></td>
+</tr>
 </tbody>
 </table>
 </div>
@@ -579,15 +617,37 @@ table.CodeRay td.code>pre{padding:0}
 <h2 id="_extensions_in_experimental_stage">3. Extensions in Experimental Stage</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>tbd</p>
+<p>Extensions in <em>experimental mode</em> may still be under discussions. API changes may still happen, so use them
+very carefully and especially give us feedback, so we can improve them before progressing to <em>draft</em> state.</p>
 </div>
+<table class="tableblock frame-1 grid-all spread">
+<colgroup>
+<col style="width: 33%;">
+<col style="width: 33%;">
+<col style="width: 33%;">
+</colgroup>
+<thead>
+<tr>
+<th class="tableblock halign-left valign-top"><em>Artifact</em></th>
+<th class="tableblock halign-left valign-top"><em>Description</em></th>
+<th class="tableblock halign-left valign-top"><em>Links</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><code>org.apache.tamaya.ext:tamaya-jodatime</code></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Provides support for JodaTime.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="mod_jodatime.html">Documentation</a></p></td>
+</tr>
+</tbody>
+</table>
 </div>
 </div>
 </div>
 <div id="footer">
 <div id="footer-text">
-Version 0.1-SNAPSHOT<br>
-Last updated 2015-03-03 17:53:33 MEZ
+Version 0.1-incubating<br>
+Last updated 2015-08-06 07:37:59 MESZ
 </div>
 </div>
 </body>

Modified: websites/staging/tamaya/trunk/content/download.html
==============================================================================
--- websites/staging/tamaya/trunk/content/download.html (original)
+++ websites/staging/tamaya/trunk/content/download.html Sat Aug 22 15:35:30 2015
@@ -101,7 +101,7 @@ h2:hover > .headerlink, h3:hover > .head
 </div>
 <hr />
 <h1 id="latest-release">Latest Release<a class="headerlink" href="#latest-release" title="Permanent link">&para;</a></h1>
-<p>Unfortunately we have not yet published a release.</p>
+<p>Latest release is 0.1-incubating.</p>
 <h1 id="maven-dependencies">Maven Dependencies<a class="headerlink" href="#maven-dependencies" title="Permanent link">&para;</a></h1>
 <p>Details are available <a href="documentation/#_project_configuration_without_maven">here</a>.</p>
 <h1 id="previous-releases">Previous Releases<a class="headerlink" href="#previous-releases" title="Permanent link">&para;</a></h1>

Modified: websites/staging/tamaya/trunk/content/javadoc.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc.html Sat Aug 22 15:35:30 2015
@@ -101,13 +101,15 @@ h2:hover > .headerlink, h3:hover > .head
 </div>
 <hr />
 <h1 id="latest-version">Latest version<a class="headerlink" href="#latest-version" title="Permanent link">&para;</a></h1>
-<p>Snapshot from 2nd May 2015:</p>
+<p>You can checkout the latest version always from our Apache source repository, or the corresponding GitHub mirror.
+Refer to our [source section][5] for details. For building Apache Tamaya you only need Apache Maven, JDK 7 and JDK 8
+being installed.</p>
+<h1 id="stable-releases">Stable Releases<a class="headerlink" href="#stable-releases" title="Permanent link">&para;</a></h1>
+<p>The latest published release is 0.1-incubating.</p>
 <ul>
 <li>Java 8 based version for <a href="/javadoc/api/java8">API</a> and <a href="/javadoc/core/java8">Core Implementation</a></li>
 <li>Java 7 based version for <a href="/javadoc/api/java7">API</a> and <a href="/javadoc/core/java7">Core Implementation</a></li>
 </ul>
-<h1 id="stable-releases">Stable Releases<a class="headerlink" href="#stable-releases" title="Permanent link">&para;</a></h1>
-<p>Unfortunately we have not yet published a release.</p>
 <h1 id="contribute">Contribute<a class="headerlink" href="#contribute" title="Permanent link">&para;</a></h1>
 <p>If you would like to submit a javadoc patch through Jira, you can have a look at the <a href="suggested-git-workflows.html">suggested approach</a>.</p>
 <h1 id="publish-procedure-for-committers-only">Publish procedure (for committers only)<a class="headerlink" href="#publish-procedure-for-committers-only" title="Permanent link">&para;</a></h1>
@@ -120,6 +122,7 @@ h2:hover > .headerlink, h3:hover > .head
 <li>Commit the changes to the site repo.</li>
 <li>Log in to <a href="https://cms.apache.org/tamaya/publish">https://cms.apache.org/tamaya/publish</a> and click on the <code>Submit</code> button.</li>
 </ol>
+<p>[5]; source.html</p>
           </div>
       </div>
 

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-frame.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-frame.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-frame.html Sat Aug 22 15:35:30 2015
@@ -2,30 +2,30 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>All Classes</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>All Classes (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
 </head>
 <body>
-<h1 class="bar">All&nbsp;Classes</h1>
+<h1 class="bar">All Classes</h1>
 <div class="indexContainer">
 <ul>
 <li><a href="org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya" target="classFrame">ConfigException</a></li>
-<li><a href="org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya" target="classFrame"><span class="interfaceName">ConfigOperator</span></a></li>
-<li><a href="org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya" target="classFrame"><span class="interfaceName">ConfigQuery</span></a></li>
-<li><a href="org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya" target="classFrame"><span class="interfaceName">Configuration</span></a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationContext.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">ConfigurationContext</span></a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationContextBuilder.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">ConfigurationContextBuilder</span></a></li>
+<li><a href="org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya" target="classFrame"><i>ConfigOperator</i></a></li>
+<li><a href="org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya" target="classFrame"><i>ConfigQuery</i></a></li>
+<li><a href="org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya" target="classFrame"><i>Configuration</i></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationContext.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>ConfigurationContext</i></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationContextBuilder.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>ConfigurationContextBuilder</i></a></li>
 <li><a href="org/apache/tamaya/ConfigurationProvider.html" title="class in org.apache.tamaya" target="classFrame">ConfigurationProvider</a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationProviderSpi.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">ConfigurationProviderSpi</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyConverter.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">PropertyConverter</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyFilter.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">PropertyFilter</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertySource.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">PropertySource</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertySourceProvider.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">PropertySourceProvider</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyValueCombinationPolicy.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">PropertyValueCombinationPolicy</span></a></li>
-<li><a href="org/apache/tamaya/spi/ServiceContext.html" title="interface in org.apache.tamaya.spi" target="classFrame"><span class="interfaceName">ServiceContext</span></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationProviderSpi.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>ConfigurationProviderSpi</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyConverter.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>PropertyConverter</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyFilter.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>PropertyFilter</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertySource.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>PropertySource</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertySourceProvider.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>PropertySourceProvider</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyValueCombinationPolicy.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>PropertyValueCombinationPolicy</i></a></li>
+<li><a href="org/apache/tamaya/spi/ServiceContext.html" title="interface in org.apache.tamaya.spi" target="classFrame"><i>ServiceContext</i></a></li>
 <li><a href="org/apache/tamaya/spi/ServiceContextManager.html" title="class in org.apache.tamaya.spi" target="classFrame">ServiceContextManager</a></li>
 <li><a href="org/apache/tamaya/TypeLiteral.html" title="class in org.apache.tamaya" target="classFrame">TypeLiteral</a></li>
 </ul>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-noframe.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-noframe.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/allclasses-noframe.html Sat Aug 22 15:35:30 2015
@@ -2,30 +2,30 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>All Classes</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>All Classes (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
 </head>
 <body>
-<h1 class="bar">All&nbsp;Classes</h1>
+<h1 class="bar">All Classes</h1>
 <div class="indexContainer">
 <ul>
 <li><a href="org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya">ConfigException</a></li>
-<li><a href="org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><span class="interfaceName">ConfigOperator</span></a></li>
-<li><a href="org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><span class="interfaceName">ConfigQuery</span></a></li>
-<li><a href="org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><span class="interfaceName">Configuration</span></a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationContext.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">ConfigurationContext</span></a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationContextBuilder.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">ConfigurationContextBuilder</span></a></li>
+<li><a href="org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><i>ConfigOperator</i></a></li>
+<li><a href="org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><i>ConfigQuery</i></a></li>
+<li><a href="org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><i>Configuration</i></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationContext.html" title="interface in org.apache.tamaya.spi"><i>ConfigurationContext</i></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationContextBuilder.html" title="interface in org.apache.tamaya.spi"><i>ConfigurationContextBuilder</i></a></li>
 <li><a href="org/apache/tamaya/ConfigurationProvider.html" title="class in org.apache.tamaya">ConfigurationProvider</a></li>
-<li><a href="org/apache/tamaya/spi/ConfigurationProviderSpi.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">ConfigurationProviderSpi</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyConverter.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">PropertyConverter</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyFilter.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">PropertyFilter</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertySource.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">PropertySource</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertySourceProvider.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">PropertySourceProvider</span></a></li>
-<li><a href="org/apache/tamaya/spi/PropertyValueCombinationPolicy.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">PropertyValueCombinationPolicy</span></a></li>
-<li><a href="org/apache/tamaya/spi/ServiceContext.html" title="interface in org.apache.tamaya.spi"><span class="interfaceName">ServiceContext</span></a></li>
+<li><a href="org/apache/tamaya/spi/ConfigurationProviderSpi.html" title="interface in org.apache.tamaya.spi"><i>ConfigurationProviderSpi</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyConverter.html" title="interface in org.apache.tamaya.spi"><i>PropertyConverter</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyFilter.html" title="interface in org.apache.tamaya.spi"><i>PropertyFilter</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertySource.html" title="interface in org.apache.tamaya.spi"><i>PropertySource</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertySourceProvider.html" title="interface in org.apache.tamaya.spi"><i>PropertySourceProvider</i></a></li>
+<li><a href="org/apache/tamaya/spi/PropertyValueCombinationPolicy.html" title="interface in org.apache.tamaya.spi"><i>PropertyValueCombinationPolicy</i></a></li>
+<li><a href="org/apache/tamaya/spi/ServiceContext.html" title="interface in org.apache.tamaya.spi"><i>ServiceContext</i></a></li>
 <li><a href="org/apache/tamaya/spi/ServiceContextManager.html" title="class in org.apache.tamaya.spi">ServiceContextManager</a></li>
 <li><a href="org/apache/tamaya/TypeLiteral.html" title="class in org.apache.tamaya">TypeLiteral</a></li>
 </ul>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/constant-values.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/constant-values.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/constant-values.html Sat Aug 22 15:35:30 2015
@@ -2,20 +2,16 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>Constant Field Values</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Constant Field Values (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
 </head>
 <body>
 <script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values";
-        }
-    }
-    catch(err) {
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="Constant Field Values (Apache Tamaya Java 7 API 0.1-incubating API)";
     }
 //-->
 </script>
@@ -23,20 +19,19 @@
 <div>JavaScript is disabled on your browser.</div>
 </noscript>
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
+<div class="topNav"><a name="navbar_top">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li><a href="help-doc.html">Help</a></li>
 </ul>
 </div>
@@ -47,10 +42,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
-<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="constant-values.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -64,7 +59,7 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.top">
+<a name="skip-navbar_top">
 <!--   -->
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -81,7 +76,7 @@
 <h2 title="org.apache">org.apache.*</h2>
 <ul class="blockList">
 <li class="blockList">
-<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
 <caption><span>org.apache.tamaya.spi.<a href="org/apache/tamaya/spi/PropertySource.html" title="interface in org.apache.tamaya.spi">PropertySource</a></span><span class="tabEnd">&nbsp;</span></caption>
 <tr>
 <th class="colFirst" scope="col">Modifier and Type</th>
@@ -92,7 +87,7 @@
 <tr class="altColor">
 <td class="colFirst"><a name="org.apache.tamaya.spi.PropertySource.TAMAYA_ORDINAL">
 <!--   -->
-</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td><code><a href="org/apache/tamaya/spi/PropertySource.html#TAMAYA_ORDINAL">TAMAYA_ORDINAL</a></code></td>
 <td class="colLast"><code>"tamaya.ordinal"</code></td>
 </tr>
@@ -102,20 +97,19 @@
 </ul>
 </div>
 <!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
+<div class="bottomNav"><a name="navbar_bottom">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li><a href="help-doc.html">Help</a></li>
 </ul>
 </div>
@@ -126,10 +120,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
-<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="constant-values.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -143,9 +137,10 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.bottom">
+<a name="skip-navbar_bottom">
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2015 <a href="http://apache.org">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/deprecated-list.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/deprecated-list.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/deprecated-list.html Sat Aug 22 15:35:30 2015
@@ -2,20 +2,16 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>Deprecated List</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Deprecated List (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
 </head>
 <body>
 <script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List";
-        }
-    }
-    catch(err) {
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="Deprecated List (Apache Tamaya Java 7 API 0.1-incubating API)";
     }
 //-->
 </script>
@@ -23,20 +19,19 @@
 <div>JavaScript is disabled on your browser.</div>
 </noscript>
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
+<div class="topNav"><a name="navbar_top">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li class="navBarCell1Rev">Deprecated</li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li><a href="help-doc.html">Help</a></li>
 </ul>
 </div>
@@ -47,10 +42,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
-<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -64,7 +59,7 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.top">
+<a name="skip-navbar_top">
 <!--   -->
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -73,20 +68,19 @@
 <h2 title="Contents">Contents</h2>
 </div>
 <!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
+<div class="bottomNav"><a name="navbar_bottom">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li class="navBarCell1Rev">Deprecated</li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li><a href="help-doc.html">Help</a></li>
 </ul>
 </div>
@@ -97,10 +91,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
-<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -114,9 +108,10 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.bottom">
+<a name="skip-navbar_bottom">
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2015 <a href="http://apache.org">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/help-doc.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/help-doc.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/help-doc.html Sat Aug 22 15:35:30 2015
@@ -2,20 +2,16 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>API Help</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>API Help (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
-<script type="text/javascript" src="script.js"></script>
 </head>
 <body>
 <script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help";
-        }
-    }
-    catch(err) {
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="API Help (Apache Tamaya Java 7 API 0.1-incubating API)";
     }
 //-->
 </script>
@@ -23,20 +19,19 @@
 <div>JavaScript is disabled on your browser.</div>
 </noscript>
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
+<div class="topNav"><a name="navbar_top">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li class="navBarCell1Rev">Help</li>
 </ul>
 </div>
@@ -47,10 +42,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
-<li><a href="help-doc.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="help-doc.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_top">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -64,7 +59,7 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.top">
+<a name="skip-navbar_top">
 <!--   -->
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -136,6 +131,10 @@
 </ul>
 </li>
 <li class="blockList">
+<h2>Use</h2>
+<p>Each documented package, class and interface has its own Use page.  This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A.  You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</p>
+</li>
+<li class="blockList">
 <h2>Tree (Class Hierarchy)</h2>
 <p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.</p>
 <ul>
@@ -149,7 +148,7 @@
 </li>
 <li class="blockList">
 <h2>Index</h2>
-<p>The <a href="index-files/index-1.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
+<p>The <a href="index-all.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
 </li>
 <li class="blockList">
 <h2>Prev/Next</h2>
@@ -172,22 +171,21 @@
 <p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p>
 </li>
 </ul>
-<span class="emphasizedPhrase">This help file applies to API documentation generated using the standard doclet.</span></div>
+<em>This help file applies to API documentation generated using the standard doclet.</em></div>
 <!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
+<div class="bottomNav"><a name="navbar_bottom">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="overview-summary.html">Overview</a></li>
 <li>Package</li>
 <li>Class</li>
+<li>Use</li>
 <li><a href="overview-tree.html">Tree</a></li>
 <li><a href="deprecated-list.html">Deprecated</a></li>
-<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="index-all.html">Index</a></li>
 <li class="navBarCell1Rev">Help</li>
 </ul>
 </div>
@@ -198,10 +196,10 @@
 </ul>
 <ul class="navList">
 <li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
-<li><a href="help-doc.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="help-doc.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -215,9 +213,10 @@
   //-->
 </script>
 </div>
-<a name="skip.navbar.bottom">
+<a name="skip-navbar_bottom">
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2015 <a href="http://apache.org">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/index.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/index.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/index.html Sat Aug 22 15:35:30 2015
@@ -2,8 +2,9 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:35 CEST 2015 -->
-<title>Generated Documentation (Untitled)</title>
+<!-- Generated by javadoc on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Apache Tamaya Java 7 API 0.1-incubating API</title>
 <script type="text/javascript">
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigException.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigException.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigException.html Sat Aug 22 15:35:30 2015
@@ -2,20 +2,17 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:34 CEST 2015 -->
-<title>ConfigException</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>ConfigException (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
+<meta name="keywords" content="org.apache.tamaya.ConfigException class">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../script.js"></script>
 </head>
 <body>
 <script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigException";
-        }
-    }
-    catch(err) {
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="ConfigException (Apache Tamaya Java 7 API 0.1-incubating API)";
     }
 //-->
 </script>
@@ -23,34 +20,33 @@
 <div>JavaScript is disabled on your browser.</div>
 </noscript>
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
+<div class="topNav"><a name="navbar_top">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="../../../overview-summary.html">Overview</a></li>
 <li><a href="package-summary.html">Package</a></li>
 <li class="navBarCell1Rev">Class</li>
+<li><a href="class-use/ConfigException.html">Use</a></li>
 <li><a href="package-tree.html">Tree</a></li>
 <li><a href="../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../index-files/index-1.html">Index</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
 <li><a href="../../../help-doc.html">Help</a></li>
 </ul>
 </div>
 <div class="subNav">
 <ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li>Prev Class</li>
+<li><a href="../../../org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><span class="strong">Next Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/tamaya/ConfigException.html" target="_top">Frames</a></li>
-<li><a href="ConfigException.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="ConfigException.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -69,17 +65,17 @@
 <li>Summary:&nbsp;</li>
 <li>Nested&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
+<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#methods_inherited_from_class_java.lang.Throwable">Method</a></li>
 </ul>
 <ul class="subNavList">
 <li>Detail:&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
 <li>Method</li>
 </ul>
 </div>
-<a name="skip.navbar.top">
+<a name="skip-navbar_top">
 <!--   -->
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -90,16 +86,16 @@
 </div>
 <div class="contentContainer">
 <ul class="inheritance">
-<li>java.lang.Object</li>
+<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
 <li>
 <ul class="inheritance">
-<li>java.lang.Throwable</li>
+<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">java.lang.Throwable</a></li>
 <li>
 <ul class="inheritance">
-<li>java.lang.Exception</li>
+<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">java.lang.Exception</a></li>
 <li>
 <ul class="inheritance">
-<li>java.lang.RuntimeException</li>
+<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang">java.lang.RuntimeException</a></li>
 <li>
 <ul class="inheritance">
 <li>org.apache.tamaya.ConfigException</li>
@@ -117,17 +113,14 @@
 <li class="blockList">
 <dl>
 <dt>All Implemented Interfaces:</dt>
-<dd>java.io.Serializable</dd>
+<dd><a href="http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
 </dl>
 <hr>
 <br>
-<pre>public class <span class="typeNameLabel">ConfigException</span>
-extends java.lang.RuntimeException</pre>
+<pre>public class <span class="strong">ConfigException</span>
+extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang">RuntimeException</a></pre>
 <div class="block">Exception class (runtime exception) for configuration issues.</div>
-<dl>
-<dt><span class="seeLabel">See Also:</span></dt>
-<dd><a href="../../../serialized-form.html#org.apache.tamaya.ConfigException">Serialized Form</a></dd>
-</dl>
+<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../serialized-form.html#org.apache.tamaya.ConfigException">Serialized Form</a></dd></dl>
 </li>
 </ul>
 </div>
@@ -136,23 +129,23 @@ extends java.lang.RuntimeException</pre>
 <li class="blockList">
 <!-- ======== CONSTRUCTOR SUMMARY ======== -->
 <ul class="blockList">
-<li class="blockList"><a name="constructor.summary">
+<li class="blockList"><a name="constructor_summary">
 <!--   -->
 </a>
 <h3>Constructor Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
+<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
 <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
 <tr>
 <th class="colOne" scope="col">Constructor and Description</th>
 </tr>
 <tr class="altColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/tamaya/ConfigException.html#ConfigException-java.lang.String-">ConfigException</a></span>(java.lang.String&nbsp;message)</code>
+<td class="colOne"><code><strong><a href="../../../org/apache/tamaya/ConfigException.html#ConfigException(java.lang.String)">ConfigException</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
 <div class="block">Creates a new configuration exception.</div>
 </td>
 </tr>
 <tr class="rowColor">
-<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/tamaya/ConfigException.html#ConfigException-java.lang.String-java.lang.Throwable-">ConfigException</a></span>(java.lang.String&nbsp;message,
-               java.lang.Throwable&nbsp;t)</code>
+<td class="colOne"><code><strong><a href="../../../org/apache/tamaya/ConfigException.html#ConfigException(java.lang.String,%20java.lang.Throwable)">ConfigException</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
+               <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
 <div class="block">Creates a new configuration exception.</div>
 </td>
 </tr>
@@ -161,23 +154,23 @@ extends java.lang.RuntimeException</pre>
 </ul>
 <!-- ========== METHOD SUMMARY =========== -->
 <ul class="blockList">
-<li class="blockList"><a name="method.summary">
+<li class="blockList"><a name="method_summary">
 <!--   -->
 </a>
 <h3>Method Summary</h3>
 <ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
+<li class="blockList"><a name="methods_inherited_from_class_java.lang.Throwable">
 <!--   -->
 </a>
-<h3>Methods inherited from class&nbsp;java.lang.Throwable</h3>
-<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></h3>
+<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang">addSuppressed</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace()" title="class or interface in java.lang">fillInStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause()" title="class or interface in java.lang">getCause</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage()" title="class or interface in java.lang">getLocalizedMessage</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getMessage()" title="class or interface in java.lang">getMessage</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace()" title="class or inter
 face in java.lang">getStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed()" title="class or interface in java.lang">getSuppressed</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#initCause(java.lang.Throwable)" title="class or interface in java.lang">initCause</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace()" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lan
 g/Throwable.html?is-external=true#setStackTrace(java.lang.StackTraceElement[])" title="class or interface in java.lang">setStackTrace</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#toString()" title="class or interface in java.lang">toString</a></code></li>
 </ul>
 <ul class="blockList">
-<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
+<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
 <!--   -->
 </a>
-<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
-<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
+<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
 </ul>
 </li>
 </ul>
@@ -189,38 +182,31 @@ extends java.lang.RuntimeException</pre>
 <li class="blockList">
 <!-- ========= CONSTRUCTOR DETAIL ======== -->
 <ul class="blockList">
-<li class="blockList"><a name="constructor.detail">
+<li class="blockList"><a name="constructor_detail">
 <!--   -->
 </a>
 <h3>Constructor Detail</h3>
-<a name="ConfigException-java.lang.String-">
+<a name="ConfigException(java.lang.String)">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
 <h4>ConfigException</h4>
-<pre>public&nbsp;ConfigException(java.lang.String&nbsp;message)</pre>
+<pre>public&nbsp;ConfigException(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
 <div class="block">Creates a new configuration exception.</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>message</code> - the exception message, not null.</dd>
-</dl>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the exception message, not null.</dd></dl>
 </li>
 </ul>
-<a name="ConfigException-java.lang.String-java.lang.Throwable-">
+<a name="ConfigException(java.lang.String, java.lang.Throwable)">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
 <h4>ConfigException</h4>
-<pre>public&nbsp;ConfigException(java.lang.String&nbsp;message,
-                       java.lang.Throwable&nbsp;t)</pre>
+<pre>public&nbsp;ConfigException(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
+               <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
 <div class="block">Creates a new configuration exception.</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>message</code> - the exception message, not null.</dd>
-<dd><code>t</code> - the throwable.</dd>
-</dl>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the exception message, not null.</dd><dd><code>t</code> - the throwable.</dd></dl>
 </li>
 </ul>
 </li>
@@ -231,34 +217,33 @@ extends java.lang.RuntimeException</pre>
 </div>
 <!-- ========= END OF CLASS DATA ========= -->
 <!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
+<div class="bottomNav"><a name="navbar_bottom">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="../../../overview-summary.html">Overview</a></li>
 <li><a href="package-summary.html">Package</a></li>
 <li class="navBarCell1Rev">Class</li>
+<li><a href="class-use/ConfigException.html">Use</a></li>
 <li><a href="package-tree.html">Tree</a></li>
 <li><a href="../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../index-files/index-1.html">Index</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
 <li><a href="../../../help-doc.html">Help</a></li>
 </ul>
 </div>
 <div class="subNav">
 <ul class="navList">
-<li>Prev&nbsp;Class</li>
-<li><a href="../../../org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li>Prev Class</li>
+<li><a href="../../../org/apache/tamaya/ConfigOperator.html" title="interface in org.apache.tamaya"><span class="strong">Next Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/tamaya/ConfigException.html" target="_top">Frames</a></li>
-<li><a href="ConfigException.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="ConfigException.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -277,19 +262,20 @@ extends java.lang.RuntimeException</pre>
 <li>Summary:&nbsp;</li>
 <li>Nested&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
-<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
+<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#methods_inherited_from_class_java.lang.Throwable">Method</a></li>
 </ul>
 <ul class="subNavList">
 <li>Detail:&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
-<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
 <li>Method</li>
 </ul>
 </div>
-<a name="skip.navbar.bottom">
+<a name="skip-navbar_bottom">
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2015 <a href="http://apache.org">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigOperator.html
==============================================================================
--- websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigOperator.html (original)
+++ websites/staging/tamaya/trunk/content/javadoc/api/java7/org/apache/tamaya/ConfigOperator.html Sat Aug 22 15:35:30 2015
@@ -2,61 +2,52 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (1.8.0) on Sat May 02 00:08:34 CEST 2015 -->
-<title>ConfigOperator</title>
-<meta name="date" content="2015-05-02">
+<!-- Generated by javadoc (version 1.7.0_79) on Thu Aug 06 19:58:14 CEST 2015 -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>ConfigOperator (Apache Tamaya Java 7 API 0.1-incubating API)</title>
+<meta name="date" content="2015-08-06">
+<meta name="keywords" content="org.apache.tamaya.ConfigOperator interface">
+<meta name="keywords" content="operate()">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
-<script type="text/javascript" src="../../../script.js"></script>
 </head>
 <body>
 <script type="text/javascript"><!--
-    try {
-        if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigOperator";
-        }
-    }
-    catch(err) {
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="ConfigOperator (Apache Tamaya Java 7 API 0.1-incubating API)";
     }
 //-->
-var methods = {"i0":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
 </script>
 <noscript>
 <div>JavaScript is disabled on your browser.</div>
 </noscript>
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="topNav"><a name="navbar.top">
+<div class="topNav"><a name="navbar_top">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.top.firstrow">
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="../../../overview-summary.html">Overview</a></li>
 <li><a href="package-summary.html">Package</a></li>
 <li class="navBarCell1Rev">Class</li>
+<li><a href="class-use/ConfigOperator.html">Use</a></li>
 <li><a href="package-tree.html">Tree</a></li>
 <li><a href="../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../index-files/index-1.html">Index</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
 <li><a href="../../../help-doc.html">Help</a></li>
 </ul>
 </div>
 <div class="subNav">
 <ul class="navList">
-<li><a href="../../../org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya"><span class="strong">Prev Class</span></a></li>
+<li><a href="../../../org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><span class="strong">Next Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/tamaya/ConfigOperator.html" target="_top">Frames</a></li>
-<li><a href="ConfigOperator.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="ConfigOperator.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_top">
-<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -76,16 +67,16 @@ var activeTableTab = "activeTableTab";
 <li>Nested&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
+<li><a href="#method_summary">Method</a></li>
 </ul>
 <ul class="subNavList">
 <li>Detail:&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
+<li><a href="#method_detail">Method</a></li>
 </ul>
 </div>
-<a name="skip.navbar.top">
+<a name="skip-navbar_top">
 <!--   -->
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -100,10 +91,10 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <hr>
 <br>
-<pre>public interface <span class="typeNameLabel">ConfigOperator</span></pre>
-<div class="block">Models a function that maps a given <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> to another <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a>. This can be used
- to modell additional functionality and applying it to a given <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> instance by calling
- the <a href="../../../org/apache/tamaya/Configuration.html#with-org.apache.tamaya.ConfigOperator-"><code>Configuration.with(org.apache.tamaya.ConfigOperator)</code></a> method.</div>
+<pre>public interface <span class="strong">ConfigOperator</span></pre>
+<div class="block">Models a function that maps a given <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> to another <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a>. This can be used
+ to modell additional functionality and applying it to a given <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> instance by calling
+ the <a href="../../../org/apache/tamaya/Configuration.html#with(org.apache.tamaya.ConfigOperator)"><code>Configuration.with(org.apache.tamaya.ConfigOperator)</code></a> method.</div>
 </li>
 </ul>
 </div>
@@ -112,19 +103,19 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <!-- ========== METHOD SUMMARY =========== -->
 <ul class="blockList">
-<li class="blockList"><a name="method.summary">
+<li class="blockList"><a name="method_summary">
 <!--   -->
 </a>
 <h3>Method Summary</h3>
-<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
-<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
+<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
 <tr>
 <th class="colFirst" scope="col">Modifier and Type</th>
 <th class="colLast" scope="col">Method and Description</th>
 </tr>
-<tr id="i0" class="altColor">
+<tr class="altColor">
 <td class="colFirst"><code><a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya">Configuration</a></code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/tamaya/ConfigOperator.html#operate-org.apache.tamaya.Configuration-">operate</a></span>(<a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya">Configuration</a>&nbsp;config)</code>
+<td class="colLast"><code><strong><a href="../../../org/apache/tamaya/ConfigOperator.html#operate(org.apache.tamaya.Configuration)">operate</a></strong>(<a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya">Configuration</a>&nbsp;config)</code>
 <div class="block">Creates a new <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> based on the given Configuration.</div>
 </td>
 </tr>
@@ -139,26 +130,22 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <!-- ============ METHOD DETAIL ========== -->
 <ul class="blockList">
-<li class="blockList"><a name="method.detail">
+<li class="blockList"><a name="method_detail">
 <!--   -->
 </a>
 <h3>Method Detail</h3>
-<a name="operate-org.apache.tamaya.Configuration-">
+<a name="operate(org.apache.tamaya.Configuration)">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
 <h4>operate</h4>
 <pre><a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya">Configuration</a>&nbsp;operate(<a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya">Configuration</a>&nbsp;config)</pre>
-<div class="block">Creates a new <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> based on the given Configuration. Operators basically acts similar to
- decorators, whereas operated instances may have non compatible behaviour, e.g. by applying security constraints
+<div class="block">Creates a new <a href="../../../org/apache/tamaya/Configuration.html" title="interface in org.apache.tamaya"><code>Configuration</code></a> based on the given Configuration. Operators basically acts similar to
+ decorators, whereas operated instances may have non compatible behaviour, e.g. by applying security constraints
  or view restrictions.</div>
-<dl>
-<dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>config</code> - the input configuration, not null.</dd>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>the operated configuration, never null.</dd>
-</dl>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>config</code> - the input configuration, not null.</dd>
+<dt><span class="strong">Returns:</span></dt><dd>the operated configuration, never null.</dd></dl>
 </li>
 </ul>
 </li>
@@ -169,34 +156,33 @@ var activeTableTab = "activeTableTab";
 </div>
 <!-- ========= END OF CLASS DATA ========= -->
 <!-- ======= START OF BOTTOM NAVBAR ====== -->
-<div class="bottomNav"><a name="navbar.bottom">
+<div class="bottomNav"><a name="navbar_bottom">
 <!--   -->
-</a>
-<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
-<a name="navbar.bottom.firstrow">
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
 <!--   -->
 </a>
 <ul class="navList" title="Navigation">
 <li><a href="../../../overview-summary.html">Overview</a></li>
 <li><a href="package-summary.html">Package</a></li>
 <li class="navBarCell1Rev">Class</li>
+<li><a href="class-use/ConfigOperator.html">Use</a></li>
 <li><a href="package-tree.html">Tree</a></li>
 <li><a href="../../../deprecated-list.html">Deprecated</a></li>
-<li><a href="../../../index-files/index-1.html">Index</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
 <li><a href="../../../help-doc.html">Help</a></li>
 </ul>
 </div>
 <div class="subNav">
 <ul class="navList">
-<li><a href="../../../org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/tamaya/ConfigException.html" title="class in org.apache.tamaya"><span class="strong">Prev Class</span></a></li>
+<li><a href="../../../org/apache/tamaya/ConfigQuery.html" title="interface in org.apache.tamaya"><span class="strong">Next Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/tamaya/ConfigOperator.html" target="_top">Frames</a></li>
-<li><a href="ConfigOperator.html" target="_top">No&nbsp;Frames</a></li>
+<li><a href="ConfigOperator.html" target="_top">No Frames</a></li>
 </ul>
 <ul class="navList" id="allclasses_navbar_bottom">
-<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
 </ul>
 <div>
 <script type="text/javascript"><!--
@@ -216,18 +202,19 @@ var activeTableTab = "activeTableTab";
 <li>Nested&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.summary">Method</a></li>
+<li><a href="#method_summary">Method</a></li>
 </ul>
 <ul class="subNavList">
 <li>Detail:&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li>Constr&nbsp;|&nbsp;</li>
-<li><a href="#method.detail">Method</a></li>
+<li><a href="#method_detail">Method</a></li>
 </ul>
 </div>
-<a name="skip.navbar.bottom">
+<a name="skip-navbar_bottom">
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2015 <a href="http://apache.org">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>