You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2016/10/19 17:14:58 UTC

[50/51] [partial] opennlp-site git commit: Migrate site from svn to git

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/HOWTO
----------------------------------------------------------------------
diff --git a/HOWTO b/HOWTO
new file mode 100644
index 0000000..2cd7c12
--- /dev/null
+++ b/HOWTO
@@ -0,0 +1,81 @@
+#############################################################################
+#    Copyright 2011 The Apache Software Foundation
+#
+#    Licensed under the Apache License, Version 2.0 (the "License");
+#    you may not use this file except in compliance with the License.
+#    You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS,
+#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#    See the License for the specific language governing permissions and
+#    limitations under the License.
+#############################################################################
+
+HOWTO for Apache OpenNLP Web Site
+=================================
+
+This HOWTO describes how the Apache OpenNLP website
+can be changed, tested and deployed.
+
+
+Working on the Website
+======================
+The website is written in Markdown with inline HTML
+and uses CSS for styling.
+
+The website has a menu on the left side, this
+menu is defined in the templates/sidenav.mdtext file,
+to change the item in the menu edit this file.
+
+All the content pages, css files, images, etc. is located in the
+content/ folder.
+
+There are a few things which should taken into account
+to change the website:
+- Make sure you understand Markdown, the following link
+  gives an introduction to it:
+  http://daringfireball.net/projects/markdown/basics
+
+- The Markdown can be mixed with HTML, do this if the
+  Markdown syntax limits you, here and there you can find
+  samples of that in our pages.
+
+- Ensure that the files are encoded as UTF-8, depending
+  on your platform your editor might not use UTF-8 to open the files.
+
+- Images are located in content/images, when you create
+  new images ask on the mailing list where to put original design
+  resources, which might be needed in the future to work on the image
+
+- Do all styling with the help of the opennlp.css stylesheet
+
+- To render the Markdown into html without checking in the modifcations:
+  * http://www.apache.org/dev/cmsref.html#local-build 
+
+Deploying
+=========
+The website must be manually deployed via the publish
+link inside the cms.apache.org page.
+
+Always follow these steps to to publish the site:
+- Test the modifications on the staging site:
+  opennlp.staging.apache.org/
+- Ensure the produced HTML and CSS is valid with
+  the W3C validation tools:
+  http://validator.w3.org/
+  http://jigsaw.w3.org/css-validator/
+- If there are issues please correct them and
+  repeat from beginning
+- Login to cms.apache.org with your committer login
+- Search for "opennlp" in the list and click on
+  "Publish opennlp site".
+- Fill in a short description about the changed content
+  into the "Log Message" text area. The Log Message will
+  used as subversion commit message and should contain all
+  involved jira issue ids. The jira issues are important,
+  they the make change to the website traceable.
+- After the website is deployed please test again that it
+  appears as expected.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/cgi-bin/download.cgi
----------------------------------------------------------------------
diff --git a/cgi-bin/download.cgi b/cgi-bin/download.cgi
new file mode 100755
index 0000000..4d46b97
--- /dev/null
+++ b/cgi-bin/download.cgi
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Wrapper script around mirrors.cgi script
+# (we must change to that directory in order for python to pick up the
+#  python includes correctly)
+cd /www/www.apache.org/dyn/mirrors
+/www/www.apache.org/dyn/mirrors/mirrors.cgi $\*
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/announcement/release-152.mdtext
----------------------------------------------------------------------
diff --git a/content/announcement/release-152.mdtext b/content/announcement/release-152.mdtext
new file mode 100644
index 0000000..490043c
--- /dev/null
+++ b/content/announcement/release-152.mdtext
@@ -0,0 +1,41 @@
+Title: Apache OpenNLP 1.5.2 Incubating released
+
+The Apache OpenNLP team is pleased to announce the release of version 1.5.2-incubating of
+Apache OpenNLP.
+
+The Apache OpenNLP library is a machine learning based toolkit for the processing of natural
+language text. It supports the most common NLP tasks, such as tokenization, sentence
+segmentation, part-of-speech tagging, named entity extraction, chunking, parsing,
+and coreference resolution.
+
+The OpenNLP 1.5.2-incubating binary and source distributions are available for download
+from our download page:
+<http://incubator.apache.org/opennlp/download.cgi>
+
+The OpenNLP library is distributed by Maven Central as well.
+See the Maven Dependency page for more details:
+<http://incubator.apache.org/opennlp/maven-dependency.html>
+
+This release contains a couple of new features, improvements and bug fixes.
+The maxent trainer can now run in multiple threads to utilize
+multi-core CPUs, configurable feature generation was added to the name finder,
+the perceptron trainer was refactored and improved, machine learners
+can now be configured with much more options via a parameter file,
+evaluators can print out detailed evaluation information.
+
+Additionally the release contains the following noteworthy changes:
+
+- Improved the white space handling in the Sentence Detector and its training code
+- Added more cross validator command line tools
+- Command line handling code has been refactored
+- Fixed problems with the new build
+- Now uses fast token class feature generation code by default
+- Added support for BioNLP/NLPBA 2004 shared task data
+- Removal of old and deprecated code
+- Dictionary case sensitivity support is now done properly
+- Support for OSGi
+
+For a complete list of fixed bugs and improvements please see the RELEASE_NOTES
+file included in the distribution.
+
+--The Apache OpenNLP Team

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/announcement/release-153.mdtext
----------------------------------------------------------------------
diff --git a/content/announcement/release-153.mdtext b/content/announcement/release-153.mdtext
new file mode 100644
index 0000000..36f1202
--- /dev/null
+++ b/content/announcement/release-153.mdtext
@@ -0,0 +1,31 @@
+Title: Apache OpenNLP 1.5.3 released
+
+The Apache OpenNLP team is pleased to announce the release of version 1.5.3 of Apache OpenNLP.
+
+The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text.
+It supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of-speech tagging,
+named entity extraction, chunking, parsing, and coreference resolution.
+
+The OpenNLP 1.5.3 binary and source distributions are available for download from our download page:
+<http://opennlp.apache.org/cgi-bin/download.cgi>
+
+The OpenNLP library is distributed by Maven Central as well. See the Maven Dependency page for more details:
+<http://opennlp.apache.org/maven-dependency.html>
+
+This release contains a couple of new features, improvements and bug fixes. The CLI
+has been improved for a better consistency. Now the tools supports extensions that
+can be configured from the model, including customized context generators and
+validators.
+
+Additionally the release contains the following noteworthy changes:
+
+- Porter Stemmer tool
+- L-BFGS parameter estimation
+- Improved documentation
+- Fine-grained POSTagger evaluation report
+- Improved support to load user provided feature generator and context validation classes from OSGi environment
+- A detailed list of the issues related to this release can be found in the release notes.
+
+For a complete list of fixed bugs and improvements please see the RELEASE_NOTES file included in the distribution.
+
+--The Apache OpenNLP Team
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/announcement/release-160.mdtext
----------------------------------------------------------------------
diff --git a/content/announcement/release-160.mdtext b/content/announcement/release-160.mdtext
new file mode 100644
index 0000000..8270eb5
--- /dev/null
+++ b/content/announcement/release-160.mdtext
@@ -0,0 +1,39 @@
+Title: Apache OpenNLP 1.6.0 released
+
+The Apache OpenNLP team is pleased to announce the release of version 1.6.0 of Apache OpenNLP.
+
+The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text.
+It supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of-speech tagging,
+named entity extraction, chunking, parsing, and coreference resolution.
+
+The OpenNLP 1.6.0 binary and source distributions are available for download from our download page:
+<http://opennlp.apache.org/cgi-bin/download.cgi>
+
+The OpenNLP library is distributed by Maven Central as well. See the Maven Dependency page for more details:
+<http://opennlp.apache.org/maven-dependency.html>
+
+This release introduces many new features, improvements and bug fixes. The API
+has been improved for a better consistency and 1.4 deprecated methods were
+removed. Now Java 1.7 is required.
+
+Additionally the release contains the following noteworthy changes:
+
+- Added evalutation support to the parser and doccat components
+- Added support to Evalita 07/09, Brat and OntoNotes corpus formats
+- Now L-BFGS is stable
+- Added Snowball to the Stemmer package
+- NameFinder now supports a user defined factory
+- Added pluggable machine learning support
+- Added a lemmatizer module
+- Added Cluster, Document Begin and Clark feature generators to the Name Finder
+- Added Liblinear as a Machine Learning addon
+- Entity Linker now has a command line interface
+- Added sequence classification support
+
+A detailed list of the issues related to this release can be found in the release notes.
+
+For a complete list of fixed bugs and improvements please see the RELEASE_NOTES
+file included in the distribution.
+
+--The Apache OpenNLP Team
+

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/building.mdtext
----------------------------------------------------------------------
diff --git a/content/building.mdtext b/content/building.mdtext
new file mode 100644
index 0000000..7ffbc8c
--- /dev/null
+++ b/content/building.mdtext
@@ -0,0 +1,39 @@
+Title: Building from Source
+
+## Prerequisites
+
+ - If you have an IDE installed such as [NetBeans](http://www.netbeans.org/) or [Eclipse](http://www.eclipse.org/) installed, it will make your development easier.  However, follow on for the brave.
+ - At least [JDK 5](http://www.oracle.com/technetwork/java/javase/overview/index.html) is required to compile and run the object code.
+ - At least [Apache Maven 3.0](http://maven.apache.org/) is required to build the source files and assemble the project.
+
+## Build Procedure
+
+OpenNLP can either be build from the distributed sources or from
+a subversion checkout. These build instructions document how
+to build from the latest trunk version. The distributed source package
+includes a README file which explains how to build it.
+
+On the first checkout everything should be built.
+Go to the opennlp folder inside the trunk folder (e.g. opennlp-trunk) and type 
+<pre><code>cd opennlp-trunk/opennlp<br>mvn install</code></pre>
+to build all modules.
+The build installs the maven artifacts in the local repository
+and creates a binary and source distribution inside the 
+opennlp-distr/target folder.
+
+After the initial build the individual modules can be built on their own
+with: <pre><code>mvn install</code></pre>
+
+In the opennlp-docs project it is
+recommended to always build with <pre><code>mvn clean install</code></pre> because
+changed docbook xml files might not be re-processed otherwise.
+
+In some cases it might be convenient to skip the tests.
+That can be done with the "-Dmaven.test.skip=true" option.
+For example type: <pre><code>mvn clean install -Dmaven.test.skip=true</pre></code>
+
+No tests will be executed.
+
+It might happen from time to time that the build fails,
+if so please report a broken build on the opennlp-dev mailing
+list. The build should always work for everyone.

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/code-conventions.mdtext
----------------------------------------------------------------------
diff --git a/content/code-conventions.mdtext b/content/code-conventions.mdtext
new file mode 100644
index 0000000..803a744
--- /dev/null
+++ b/content/code-conventions.mdtext
@@ -0,0 +1,35 @@
+Title: Apache OpenNLP Code Conventions
+
+The Apache OpenNLP code should follow our code conventions. All code which
+is contributed to the project should adhere to these guidelines. 
+
+* Use 2 spaces for indentation. No tabs!
+* Place open braces on the same line as the declaration, for example:
+        <pre><code>
+public class Foo extends Bar {
+  public static void main(String args[]) {
+    try {
+      for (int i = 0; i < args.length; i++) {
+        System.out.println(Integer.parseInt(args[i]));
+      }		        
+    }
+    catch(NumberFormatException e) {
+      e.printStackTrace();
+    }
+  }
+}
+        </code></pre>
+* Wrap lines longer than 80 to 100 characters. For wrapped lines use an indent of 8 characters.
+* Within a class or interface, definitions should be ordered as follows:
+    * Inner classses
+    * Class (static) variables
+    * Instance variables
+    * Constructors
+    * Methods
+
+* Do not use package imports (for example import org.apache.opennlp.*)
+* For other cases, we try to follow
+  [Java code conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html) as much as possible.
+  
+# Formatter and Style files
+A code formatter file for Eclipse can be found [here](code-formatter/OpenNLP-Eclipse-Formatter.xml).
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/code-formatter/OpenNLP-Eclipse-Formatter.xml
----------------------------------------------------------------------
diff --git a/content/code-formatter/OpenNLP-Eclipse-Formatter.xml b/content/code-formatter/OpenNLP-Eclipse-Formatter.xml
new file mode 100644
index 0000000..bd08e4e
--- /dev/null
+++ b/content/code-formatter/OpenNLP-Eclipse-Formatter.xml
@@ -0,0 +1,299 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+
+<profiles version="11">
+<profile kind="CodeFormatterProfile" name="OpenNLP" version="11">
+<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_field" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_package" value="0"/>
+<setting id="org.eclipse.jdt.core.compiler.source" value="1.5"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_member_type" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.indent_parameter_description" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.compiler.problem.assertIdentifier" value="error"/>
+<setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="space"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_method" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.compact_else_if" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_empty_lines" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/>
+<setting id="org.eclipse.jdt.core.compiler.compliance" value="1.5"/>
+<setting id="org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode" value="enabled"/>
+<setting id="org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_label" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.wrap_before_binary_operator" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.join_lines_in_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_html" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.5"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_header" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_imports" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column" value="false"/>
+</profile>
+</profiles>

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/css/opennlp.css
----------------------------------------------------------------------
diff --git a/content/css/opennlp.css b/content/css/opennlp.css
new file mode 100644
index 0000000..22345c3
--- /dev/null
+++ b/content/css/opennlp.css
@@ -0,0 +1,119 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+div.clear {
+ clear: both;
+ visibility: hidden;
+}
+
+#banner {
+ height: 80px;
+ border-bottom: 1px solid #006699;
+}
+
+#opennlp-logo {
+ float: left;
+}
+
+#apache-feather-logo {
+ float: right;
+}
+
+#navigation {
+ float: left;
+ padding: 3px 3px 3px 15px;
+ top: 10px;
+}
+
+#navigation h1{
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12pt;
+ color: #006699;
+ font-style: italic;
+}
+
+#navigation a.externalLink {
+ background: url(../images/externlink.jpeg) right center no-repeat;
+ padding-right: 18px;
+}
+#content {
+ margin: 0px 100px 100px 250px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12pt;
+}
+
+#content h1, #content h2, #content h3, #content h4, #content th {
+ color: #006699;
+}
+
+#content h1{
+ font-size: 18pt;
+ font-style: italic;
+}
+
+#content h2{
+ font-size: 16pt;
+ font-weight: bold;
+}
+
+#content h3{
+ font-size: 14pt;
+ font-weight: bold;
+}
+
+#content h4{
+ font-size: 10pt;
+ text-align: right;
+}
+
+#content th{
+ font-size: 12pt;
+ font-weight: bold;
+ text-align: left;
+}
+
+#content td{
+ padding-right: 20px;
+}
+
+#content pre {
+	font-size: 12px;
+	padding: 0;
+	margin: 0;
+	background: #f0f0f0;
+	border-left: 1px solid #ccc;
+	border-bottom: 1px solid #ccc;
+	line-height: 20px; /*--Height of each line of code--*/
+	background: url(../images/pre_code_bg.gif) repeat-y left top; /*--Background of lined paper--*/
+	width: 600px;
+	overflow: auto; /*--If the Code exceeds the width, a scrolling is available--*/
+	overflow-Y: hidden;  /*--Hides vertical scroll created by IE--*/
+}
+
+#content pre code {
+	margin: 0 0 0 40px;  /*--Left Margin--*/
+	padding: 18px 0;
+	display: block;
+}
+
+div.copyright {
+ float: right;
+}
+
+#footer {
+ border-top: 1px solid #006699;
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/doap_opennlp.rdf
----------------------------------------------------------------------
diff --git a/content/doap_opennlp.rdf b/content/doap_opennlp.rdf
new file mode 100644
index 0000000..0791991
--- /dev/null
+++ b/content/doap_opennlp.rdf
@@ -0,0 +1,57 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl"?>
+<rdf:RDF xml:lang="en"
+         xmlns="http://usefulinc.com/ns/doap#" 
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
+         xmlns:asfext="http://projects.apache.org/ns/asfext#"
+         xmlns:foaf="http://xmlns.com/foaf/0.1/">
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+   
+         http://www.apache.org/licenses/LICENSE-2.0
+   
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+  <Project rdf:about="http://opennlp.apache.org">
+    <created>2012-04-14</created>
+    <license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
+    <name>Apache OpenNLP</name>
+    <homepage rdf:resource="http://opennlp.apache.org" />
+    <asfext:pmc rdf:resource="http://opennlp.apache.org" />
+    <shortdesc>Apache OpenNLP library software is a machine learning based toolkit for the processing of natural language text..</shortdesc>
+    <description>Apache OpenNLP software supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of-speech tagging, named entity extraction, chunking, parsing, and coreference resolution. These tasks are usually required to build more advanced text processing services. OpenNLP also includes maximum entropy and perceptron based machine learning..</description>
+    <bug-database rdf:resource="https://issues.apache.org/jira/browse/OPENNLP" />
+    <mailing-list rdf:resource="http://opennlp.apache.org/mail-lists.html" />
+    <download-page rdf:resource="http://http://opennlp.apache.org/cgi-bin/download.cgi" />
+    <programming-language>Java</programming-language>
+    <category rdf:resource="http://projects.apache.org/category/library" />
+    <release>
+      <Version>
+        <name>Apache Opennlp 1.5.3</name>
+        <created>2013-01-15</created>
+        <revision>1.5.3</revision>
+      </Version>
+    </release>
+    <repository>
+      <SVNRepository>
+        <location rdf:resource="http://svn.apache.org/repos/asf/opennlp"/>
+        <browse rdf:resource="http://svn.apache.org/viewvc/opennlp"/>
+      </SVNRepository>
+    </repository>
+    <maintainer>
+      <foaf:Person>
+        <foaf:name>Apache OpenNLP PMC</foaf:name>
+          <foaf:mbox rdf:resource="mailto:dev@opennlp.apache.org"/>
+      </foaf:Person>
+    </maintainer>
+  </Project>
+</rdf:RDF>

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/documentation.mdtext
----------------------------------------------------------------------
diff --git a/content/documentation.mdtext b/content/documentation.mdtext
new file mode 100644
index 0000000..abe3b34
--- /dev/null
+++ b/content/documentation.mdtext
@@ -0,0 +1,11 @@
+Title: Documentation
+
+There exists a manual and Javadoc API documentation for Apache OpenNLP. The manual
+explains how the various OpenNLP components can be used and trained.
+
+###Apache OpenNLP 1.6.0 documentation
+* [Apache OpenNLP Manual](documentation/1.6.0/manual/opennlp.html)
+* [Apache OpenNLP Tools Javadoc](documentation/1.6.0/apidocs/opennlp-tools/index.html)
+* [Apache OpenNLP UIMA Javadoc](documentation/1.6.0/apidocs/opennlp-uima/index.html)
+
+Note: All the documentation is also included in the binary distribution.

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-frame.html b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-frame.html
new file mode 100644
index 0000000..756e504
--- /dev/null
+++ b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-frame.html
@@ -0,0 +1,193 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--NewPage-->
+<HTML>
+<HEAD>
+<!-- Generated by javadoc (build 1.5.0_06) on Tue Nov 15 23:18:00 CET 2011 -->
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<TITLE>
+All Classes (Apache OpenNLP Maxent 3.0.2-incubating API)
+</TITLE>
+
+
+<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
+
+
+</HEAD>
+
+<BODY BGCOLOR="white">
+<FONT size="+1" CLASS="FrameHeadingFont">
+<B>All Classes</B></FONT>
+<BR>
+
+<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
+<TR>
+<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="opennlp/model/AbstractDataIndexer.html" title="class in opennlp.model" target="classFrame">AbstractDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/AbstractEventStream.html" title="class in opennlp.model" target="classFrame">AbstractEventStream</A>
+<BR>
+<A HREF="opennlp/model/AbstractModel.html" title="class in opennlp.model" target="classFrame">AbstractModel</A>
+<BR>
+<A HREF="opennlp/model/AbstractModel.ModelType.html" title="enum in opennlp.model" target="classFrame">AbstractModel.ModelType</A>
+<BR>
+<A HREF="opennlp/model/AbstractModelReader.html" title="class in opennlp.model" target="classFrame">AbstractModelReader</A>
+<BR>
+<A HREF="opennlp/model/AbstractModelWriter.html" title="class in opennlp.model" target="classFrame">AbstractModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/BasicContextGenerator.html" title="class in opennlp.maxent" target="classFrame">BasicContextGenerator</A>
+<BR>
+<A HREF="opennlp/maxent/BasicEventStream.html" title="class in opennlp.maxent" target="classFrame">BasicEventStream</A>
+<BR>
+<A HREF="opennlp/model/BinaryFileDataReader.html" title="class in opennlp.model" target="classFrame">BinaryFileDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinaryGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">BinaryGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinaryGISModelWriter.html" title="class in opennlp.maxent.io" target="classFrame">BinaryGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/BinaryPerceptronModelReader.html" title="class in opennlp.perceptron" target="classFrame">BinaryPerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/BinaryPerceptronModelWriter.html" title="class in opennlp.perceptron" target="classFrame">BinaryPerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/BinToAscii.html" title="class in opennlp.maxent" target="classFrame">BinToAscii</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinToAscii.html" title="class in opennlp.maxent.io" target="classFrame">BinToAscii</A>
+<BR>
+<A HREF="opennlp/model/ComparableEvent.html" title="class in opennlp.model" target="classFrame">ComparableEvent</A>
+<BR>
+<A HREF="opennlp/model/ComparablePredicate.html" title="class in opennlp.model" target="classFrame">ComparablePredicate</A>
+<BR>
+<A HREF="opennlp/model/Context.html" title="class in opennlp.model" target="classFrame">Context</A>
+<BR>
+<A HREF="opennlp/maxent/ContextGenerator.html" title="interface in opennlp.maxent" target="classFrame"><I>ContextGenerator</I></A>
+<BR>
+<A HREF="opennlp/maxent/Counter.html" title="class in opennlp.maxent" target="classFrame">Counter</A>
+<BR>
+<A HREF="opennlp/model/DataIndexer.html" title="interface in opennlp.model" target="classFrame"><I>DataIndexer</I></A>
+<BR>
+<A HREF="opennlp/model/DataReader.html" title="interface in opennlp.model" target="classFrame"><I>DataReader</I></A>
+<BR>
+<A HREF="opennlp/maxent/DataStream.html" title="interface in opennlp.maxent" target="classFrame"><I>DataStream</I></A>
+<BR>
+<A HREF="opennlp/maxent/DomainToModelMap.html" title="class in opennlp.maxent" target="classFrame">DomainToModelMap</A>
+<BR>
+<A HREF="opennlp/maxent/DoubleStringPair.html" title="class in opennlp.maxent" target="classFrame">DoubleStringPair</A>
+<BR>
+<A HREF="opennlp/model/DynamicEvalParameters.html" title="class in opennlp.model" target="classFrame">DynamicEvalParameters</A>
+<BR>
+<A HREF="opennlp/maxent/Evalable.html" title="interface in opennlp.maxent" target="classFrame"><I>Evalable</I></A>
+<BR>
+<A HREF="opennlp/model/EvalParameters.html" title="class in opennlp.model" target="classFrame">EvalParameters</A>
+<BR>
+<A HREF="opennlp/model/Event.html" title="class in opennlp.model" target="classFrame">Event</A>
+<BR>
+<A HREF="opennlp/model/EventCollector.html" title="interface in opennlp.model" target="classFrame"><I>EventCollector</I></A>
+<BR>
+<A HREF="opennlp/model/EventCollectorAsStream.html" title="class in opennlp.model" target="classFrame">EventCollectorAsStream</A>
+<BR>
+<A HREF="opennlp/model/EventStream.html" title="interface in opennlp.model" target="classFrame"><I>EventStream</I></A>
+<BR>
+<A HREF="opennlp/model/FileEventStream.html" title="class in opennlp.model" target="classFrame">FileEventStream</A>
+<BR>
+<A HREF="opennlp/model/GenericModelReader.html" title="class in opennlp.model" target="classFrame">GenericModelReader</A>
+<BR>
+<A HREF="opennlp/model/GenericModelWriter.html" title="class in opennlp.model" target="classFrame">GenericModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/GIS.html" title="class in opennlp.maxent" target="classFrame">GIS</A>
+<BR>
+<A HREF="opennlp/maxent/GISModel.html" title="class in opennlp.maxent" target="classFrame">GISModel</A>
+<BR>
+<A HREF="opennlp/maxent/io/GISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">GISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/GISModelWriter.html" title="class in opennlp.maxent.io" target="classFrame">GISModelWriter</A>
+<BR>
+<A HREF="opennlp/model/HashSumEventStream.html" title="class in opennlp.model" target="classFrame">HashSumEventStream</A>
+<BR>
+<A HREF="opennlp/model/IndexHashTable.html" title="class in opennlp.model" target="classFrame">IndexHashTable</A>
+<BR>
+<A HREF="opennlp/maxent/IntegerPool.html" title="class in opennlp.maxent" target="classFrame">IntegerPool</A>
+<BR>
+<A HREF="opennlp/model/ListEventStream.html" title="class in opennlp.model" target="classFrame">ListEventStream</A>
+<BR>
+<A HREF="opennlp/maxent/Main.html" title="class in opennlp.maxent" target="classFrame">Main</A>
+<BR>
+<A HREF="opennlp/model/MaxentModel.html" title="interface in opennlp.model" target="classFrame"><I>MaxentModel</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelApplier.html" title="class in opennlp.maxent" target="classFrame">ModelApplier</A>
+<BR>
+<A HREF="opennlp/maxent/ModelDomain.html" title="interface in opennlp.maxent" target="classFrame"><I>ModelDomain</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelReplacementManager.html" title="class in opennlp.maxent" target="classFrame">ModelReplacementManager</A>
+<BR>
+<A HREF="opennlp/maxent/ModelSetter.html" title="interface in opennlp.maxent" target="classFrame"><I>ModelSetter</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelTrainer.html" title="class in opennlp.maxent" target="classFrame">ModelTrainer</A>
+<BR>
+<A HREF="opennlp/model/MutableContext.html" title="class in opennlp.model" target="classFrame">MutableContext</A>
+<BR>
+<A HREF="opennlp/model/ObjectDataReader.html" title="class in opennlp.model" target="classFrame">ObjectDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/ObjectGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">ObjectGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/ObjectGISModelWriter.html" title="class in opennlp.maxent.io" target="classFrame">ObjectGISModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/io/OldFormatGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">OldFormatGISModelReader</A>
+<BR>
+<A HREF="opennlp/model/OnePassDataIndexer.html" title="class in opennlp.model" target="classFrame">OnePassDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/OnePassRealValueDataIndexer.html" title="class in opennlp.model" target="classFrame">OnePassRealValueDataIndexer</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModel.html" title="class in opennlp.perceptron" target="classFrame">PerceptronModel</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModelReader.html" title="class in opennlp.perceptron" target="classFrame">PerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModelWriter.html" title="class in opennlp.perceptron" target="classFrame">PerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronTrainer.html" title="class in opennlp.perceptron" target="classFrame">PerceptronTrainer</A>
+<BR>
+<A HREF="opennlp/maxent/PlainTextByLineDataStream.html" title="class in opennlp.maxent" target="classFrame">PlainTextByLineDataStream</A>
+<BR>
+<A HREF="opennlp/model/PlainTextFileDataReader.html" title="class in opennlp.model" target="classFrame">PlainTextFileDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/PlainTextGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">PlainTextGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/PlainTextGISModelWriter.html" title="class in opennlp.maxent.io" target="classFrame">PlainTextGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/PlainTextPerceptronModelReader.html" title="class in opennlp.perceptron" target="classFrame">PlainTextPerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/PlainTextPerceptronModelWriter.html" title="class in opennlp.perceptron" target="classFrame">PlainTextPerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/io/PooledGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">PooledGISModelReader</A>
+<BR>
+<A HREF="opennlp/model/Prior.html" title="interface in opennlp.model" target="classFrame"><I>Prior</I></A>
+<BR>
+<A HREF="opennlp/maxent/RealBasicEventStream.html" title="class in opennlp.maxent" target="classFrame">RealBasicEventStream</A>
+<BR>
+<A HREF="opennlp/model/RealValueFileEventStream.html" title="class in opennlp.model" target="classFrame">RealValueFileEventStream</A>
+<BR>
+<A HREF="opennlp/model/Sequence.html" title="class in opennlp.model" target="classFrame">Sequence</A>
+<BR>
+<A HREF="opennlp/model/SequenceStream.html" title="interface in opennlp.model" target="classFrame"><I>SequenceStream</I></A>
+<BR>
+<A HREF="opennlp/model/SequenceStreamEventStream.html" title="class in opennlp.model" target="classFrame">SequenceStreamEventStream</A>
+<BR>
+<A HREF="opennlp/perceptron/SimplePerceptronSequenceTrainer.html" title="class in opennlp.perceptron" target="classFrame">SimplePerceptronSequenceTrainer</A>
+<BR>
+<A HREF="opennlp/maxent/io/SuffixSensitiveGISModelReader.html" title="class in opennlp.maxent.io" target="classFrame">SuffixSensitiveGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/SuffixSensitiveGISModelWriter.html" title="class in opennlp.maxent.io" target="classFrame">SuffixSensitiveGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/SuffixSensitivePerceptronModelWriter.html" title="class in opennlp.perceptron" target="classFrame">SuffixSensitivePerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/TrainEval.html" title="class in opennlp.maxent" target="classFrame">TrainEval</A>
+<BR>
+<A HREF="opennlp/model/TrainUtil.html" title="class in opennlp.model" target="classFrame">TrainUtil</A>
+<BR>
+<A HREF="opennlp/model/TwoPassDataIndexer.html" title="class in opennlp.model" target="classFrame">TwoPassDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/UniformPrior.html" title="class in opennlp.model" target="classFrame">UniformPrior</A>
+<BR>
+</FONT></TD>
+</TR>
+</TABLE>
+
+</BODY>
+</HTML>

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-noframe.html b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-noframe.html
new file mode 100644
index 0000000..bc123e1
--- /dev/null
+++ b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/allclasses-noframe.html
@@ -0,0 +1,193 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--NewPage-->
+<HTML>
+<HEAD>
+<!-- Generated by javadoc (build 1.5.0_06) on Tue Nov 15 23:18:00 CET 2011 -->
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<TITLE>
+All Classes (Apache OpenNLP Maxent 3.0.2-incubating API)
+</TITLE>
+
+
+<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
+
+
+</HEAD>
+
+<BODY BGCOLOR="white">
+<FONT size="+1" CLASS="FrameHeadingFont">
+<B>All Classes</B></FONT>
+<BR>
+
+<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
+<TR>
+<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="opennlp/model/AbstractDataIndexer.html" title="class in opennlp.model">AbstractDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/AbstractEventStream.html" title="class in opennlp.model">AbstractEventStream</A>
+<BR>
+<A HREF="opennlp/model/AbstractModel.html" title="class in opennlp.model">AbstractModel</A>
+<BR>
+<A HREF="opennlp/model/AbstractModel.ModelType.html" title="enum in opennlp.model">AbstractModel.ModelType</A>
+<BR>
+<A HREF="opennlp/model/AbstractModelReader.html" title="class in opennlp.model">AbstractModelReader</A>
+<BR>
+<A HREF="opennlp/model/AbstractModelWriter.html" title="class in opennlp.model">AbstractModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/BasicContextGenerator.html" title="class in opennlp.maxent">BasicContextGenerator</A>
+<BR>
+<A HREF="opennlp/maxent/BasicEventStream.html" title="class in opennlp.maxent">BasicEventStream</A>
+<BR>
+<A HREF="opennlp/model/BinaryFileDataReader.html" title="class in opennlp.model">BinaryFileDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinaryGISModelReader.html" title="class in opennlp.maxent.io">BinaryGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinaryGISModelWriter.html" title="class in opennlp.maxent.io">BinaryGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/BinaryPerceptronModelReader.html" title="class in opennlp.perceptron">BinaryPerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/BinaryPerceptronModelWriter.html" title="class in opennlp.perceptron">BinaryPerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/BinToAscii.html" title="class in opennlp.maxent">BinToAscii</A>
+<BR>
+<A HREF="opennlp/maxent/io/BinToAscii.html" title="class in opennlp.maxent.io">BinToAscii</A>
+<BR>
+<A HREF="opennlp/model/ComparableEvent.html" title="class in opennlp.model">ComparableEvent</A>
+<BR>
+<A HREF="opennlp/model/ComparablePredicate.html" title="class in opennlp.model">ComparablePredicate</A>
+<BR>
+<A HREF="opennlp/model/Context.html" title="class in opennlp.model">Context</A>
+<BR>
+<A HREF="opennlp/maxent/ContextGenerator.html" title="interface in opennlp.maxent"><I>ContextGenerator</I></A>
+<BR>
+<A HREF="opennlp/maxent/Counter.html" title="class in opennlp.maxent">Counter</A>
+<BR>
+<A HREF="opennlp/model/DataIndexer.html" title="interface in opennlp.model"><I>DataIndexer</I></A>
+<BR>
+<A HREF="opennlp/model/DataReader.html" title="interface in opennlp.model"><I>DataReader</I></A>
+<BR>
+<A HREF="opennlp/maxent/DataStream.html" title="interface in opennlp.maxent"><I>DataStream</I></A>
+<BR>
+<A HREF="opennlp/maxent/DomainToModelMap.html" title="class in opennlp.maxent">DomainToModelMap</A>
+<BR>
+<A HREF="opennlp/maxent/DoubleStringPair.html" title="class in opennlp.maxent">DoubleStringPair</A>
+<BR>
+<A HREF="opennlp/model/DynamicEvalParameters.html" title="class in opennlp.model">DynamicEvalParameters</A>
+<BR>
+<A HREF="opennlp/maxent/Evalable.html" title="interface in opennlp.maxent"><I>Evalable</I></A>
+<BR>
+<A HREF="opennlp/model/EvalParameters.html" title="class in opennlp.model">EvalParameters</A>
+<BR>
+<A HREF="opennlp/model/Event.html" title="class in opennlp.model">Event</A>
+<BR>
+<A HREF="opennlp/model/EventCollector.html" title="interface in opennlp.model"><I>EventCollector</I></A>
+<BR>
+<A HREF="opennlp/model/EventCollectorAsStream.html" title="class in opennlp.model">EventCollectorAsStream</A>
+<BR>
+<A HREF="opennlp/model/EventStream.html" title="interface in opennlp.model"><I>EventStream</I></A>
+<BR>
+<A HREF="opennlp/model/FileEventStream.html" title="class in opennlp.model">FileEventStream</A>
+<BR>
+<A HREF="opennlp/model/GenericModelReader.html" title="class in opennlp.model">GenericModelReader</A>
+<BR>
+<A HREF="opennlp/model/GenericModelWriter.html" title="class in opennlp.model">GenericModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/GIS.html" title="class in opennlp.maxent">GIS</A>
+<BR>
+<A HREF="opennlp/maxent/GISModel.html" title="class in opennlp.maxent">GISModel</A>
+<BR>
+<A HREF="opennlp/maxent/io/GISModelReader.html" title="class in opennlp.maxent.io">GISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/GISModelWriter.html" title="class in opennlp.maxent.io">GISModelWriter</A>
+<BR>
+<A HREF="opennlp/model/HashSumEventStream.html" title="class in opennlp.model">HashSumEventStream</A>
+<BR>
+<A HREF="opennlp/model/IndexHashTable.html" title="class in opennlp.model">IndexHashTable</A>
+<BR>
+<A HREF="opennlp/maxent/IntegerPool.html" title="class in opennlp.maxent">IntegerPool</A>
+<BR>
+<A HREF="opennlp/model/ListEventStream.html" title="class in opennlp.model">ListEventStream</A>
+<BR>
+<A HREF="opennlp/maxent/Main.html" title="class in opennlp.maxent">Main</A>
+<BR>
+<A HREF="opennlp/model/MaxentModel.html" title="interface in opennlp.model"><I>MaxentModel</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelApplier.html" title="class in opennlp.maxent">ModelApplier</A>
+<BR>
+<A HREF="opennlp/maxent/ModelDomain.html" title="interface in opennlp.maxent"><I>ModelDomain</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelReplacementManager.html" title="class in opennlp.maxent">ModelReplacementManager</A>
+<BR>
+<A HREF="opennlp/maxent/ModelSetter.html" title="interface in opennlp.maxent"><I>ModelSetter</I></A>
+<BR>
+<A HREF="opennlp/maxent/ModelTrainer.html" title="class in opennlp.maxent">ModelTrainer</A>
+<BR>
+<A HREF="opennlp/model/MutableContext.html" title="class in opennlp.model">MutableContext</A>
+<BR>
+<A HREF="opennlp/model/ObjectDataReader.html" title="class in opennlp.model">ObjectDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/ObjectGISModelReader.html" title="class in opennlp.maxent.io">ObjectGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/ObjectGISModelWriter.html" title="class in opennlp.maxent.io">ObjectGISModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/io/OldFormatGISModelReader.html" title="class in opennlp.maxent.io">OldFormatGISModelReader</A>
+<BR>
+<A HREF="opennlp/model/OnePassDataIndexer.html" title="class in opennlp.model">OnePassDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/OnePassRealValueDataIndexer.html" title="class in opennlp.model">OnePassRealValueDataIndexer</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModel.html" title="class in opennlp.perceptron">PerceptronModel</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModelReader.html" title="class in opennlp.perceptron">PerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronModelWriter.html" title="class in opennlp.perceptron">PerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/PerceptronTrainer.html" title="class in opennlp.perceptron">PerceptronTrainer</A>
+<BR>
+<A HREF="opennlp/maxent/PlainTextByLineDataStream.html" title="class in opennlp.maxent">PlainTextByLineDataStream</A>
+<BR>
+<A HREF="opennlp/model/PlainTextFileDataReader.html" title="class in opennlp.model">PlainTextFileDataReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/PlainTextGISModelReader.html" title="class in opennlp.maxent.io">PlainTextGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/PlainTextGISModelWriter.html" title="class in opennlp.maxent.io">PlainTextGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/PlainTextPerceptronModelReader.html" title="class in opennlp.perceptron">PlainTextPerceptronModelReader</A>
+<BR>
+<A HREF="opennlp/perceptron/PlainTextPerceptronModelWriter.html" title="class in opennlp.perceptron">PlainTextPerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/io/PooledGISModelReader.html" title="class in opennlp.maxent.io">PooledGISModelReader</A>
+<BR>
+<A HREF="opennlp/model/Prior.html" title="interface in opennlp.model"><I>Prior</I></A>
+<BR>
+<A HREF="opennlp/maxent/RealBasicEventStream.html" title="class in opennlp.maxent">RealBasicEventStream</A>
+<BR>
+<A HREF="opennlp/model/RealValueFileEventStream.html" title="class in opennlp.model">RealValueFileEventStream</A>
+<BR>
+<A HREF="opennlp/model/Sequence.html" title="class in opennlp.model">Sequence</A>
+<BR>
+<A HREF="opennlp/model/SequenceStream.html" title="interface in opennlp.model"><I>SequenceStream</I></A>
+<BR>
+<A HREF="opennlp/model/SequenceStreamEventStream.html" title="class in opennlp.model">SequenceStreamEventStream</A>
+<BR>
+<A HREF="opennlp/perceptron/SimplePerceptronSequenceTrainer.html" title="class in opennlp.perceptron">SimplePerceptronSequenceTrainer</A>
+<BR>
+<A HREF="opennlp/maxent/io/SuffixSensitiveGISModelReader.html" title="class in opennlp.maxent.io">SuffixSensitiveGISModelReader</A>
+<BR>
+<A HREF="opennlp/maxent/io/SuffixSensitiveGISModelWriter.html" title="class in opennlp.maxent.io">SuffixSensitiveGISModelWriter</A>
+<BR>
+<A HREF="opennlp/perceptron/SuffixSensitivePerceptronModelWriter.html" title="class in opennlp.perceptron">SuffixSensitivePerceptronModelWriter</A>
+<BR>
+<A HREF="opennlp/maxent/TrainEval.html" title="class in opennlp.maxent">TrainEval</A>
+<BR>
+<A HREF="opennlp/model/TrainUtil.html" title="class in opennlp.model">TrainUtil</A>
+<BR>
+<A HREF="opennlp/model/TwoPassDataIndexer.html" title="class in opennlp.model">TwoPassDataIndexer</A>
+<BR>
+<A HREF="opennlp/model/UniformPrior.html" title="class in opennlp.model">UniformPrior</A>
+<BR>
+</FONT></TD>
+</TR>
+</TABLE>
+
+</BODY>
+</HTML>

http://git-wip-us.apache.org/repos/asf/opennlp-site/blob/f3a6ab0c/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/constant-values.html
----------------------------------------------------------------------
diff --git a/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/constant-values.html b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/constant-values.html
new file mode 100644
index 0000000..3721c98
--- /dev/null
+++ b/content/documentation/1.5.2-incubating/apidocs/opennlp-maxent/constant-values.html
@@ -0,0 +1,245 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--NewPage-->
+<HTML>
+<HEAD>
+<!-- Generated by javadoc (build 1.5.0_06) on Tue Nov 15 23:18:00 CET 2011 -->
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<TITLE>
+Constant Field Values (Apache OpenNLP Maxent 3.0.2-incubating API)
+</TITLE>
+
+
+<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
+
+<SCRIPT type="text/javascript">
+function windowTitle()
+{
+    parent.document.title="Constant Field Values (Apache OpenNLP Maxent 3.0.2-incubating API)";
+}
+</SCRIPT>
+<NOSCRIPT>
+</NOSCRIPT>
+
+</HEAD>
+
+<BODY BGCOLOR="white" onload="windowTitle();">
+
+
+<!-- ========= START OF TOP NAVBAR ======= -->
+<A NAME="navbar_top"><!-- --></A>
+<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
+<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
+<TR>
+<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
+<A NAME="navbar_top_firstrow"><!-- --></A>
+<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
+  <TR ALIGN="center" VALIGN="top">
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
+  </TR>
+</TABLE>
+</TD>
+<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
+</EM>
+</TD>
+</TR>
+
+<TR>
+<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
+&nbsp;PREV&nbsp;
+&nbsp;NEXT</FONT></TD>
+<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
+  <A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+&nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
+&nbsp;<SCRIPT type="text/javascript">
+  <!--
+  if(window==top) {
+    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
+  }
+  //-->
+</SCRIPT>
+<NOSCRIPT>
+  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
+</NOSCRIPT>
+
+
+</FONT></TD>
+</TR>
+</TABLE>
+<A NAME="skip-navbar_top"></A>
+<!-- ========= END OF TOP NAVBAR ========= -->
+
+<HR>
+<CENTER>
+<H1>
+Constant Field Values</H1>
+</CENTER>
+<HR SIZE="4" NOSHADE>
+<B>Contents</B><UL>
+<LI><A HREF="#opennlp.model">opennlp.model.*</A>
+<LI><A HREF="#opennlp.perceptron">opennlp.perceptron.*</A>
+</UL>
+
+<A NAME="opennlp.model"><!-- --></A>
+<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
+<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
+<TH ALIGN="left"><FONT SIZE="+2">
+opennlp.model.*</FONT></TH>
+</TR>
+</TABLE>
+
+<P>
+
+<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
+<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
+<TH ALIGN="left" COLSPAN="3">opennlp.model.<A HREF="opennlp/model/TrainUtil.html" title="class in opennlp.model">TrainUtil</A></TH>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.ALGORITHM_PARAM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#ALGORITHM_PARAM">ALGORITHM_PARAM</A></CODE></TD>
+<TD ALIGN="right"><CODE>"Algorithm"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.CUTOFF_PARAM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#CUTOFF_PARAM">CUTOFF_PARAM</A></CODE></TD>
+<TD ALIGN="right"><CODE>"Cutoff"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.DATA_INDEXER_ONE_PASS_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#DATA_INDEXER_ONE_PASS_VALUE">DATA_INDEXER_ONE_PASS_VALUE</A></CODE></TD>
+<TD ALIGN="right"><CODE>"OnePass"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.DATA_INDEXER_PARAM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#DATA_INDEXER_PARAM">DATA_INDEXER_PARAM</A></CODE></TD>
+<TD ALIGN="right"><CODE>"DataIndexer"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.DATA_INDEXER_TWO_PASS_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#DATA_INDEXER_TWO_PASS_VALUE">DATA_INDEXER_TWO_PASS_VALUE</A></CODE></TD>
+<TD ALIGN="right"><CODE>"TwoPass"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.ITERATIONS_PARAM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#ITERATIONS_PARAM">ITERATIONS_PARAM</A></CODE></TD>
+<TD ALIGN="right"><CODE>"Iterations"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.MAXENT_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#MAXENT_VALUE">MAXENT_VALUE</A></CODE></TD>
+<TD ALIGN="right"><CODE>"MAXENT"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.PERCEPTRON_SEQUENCE_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#PERCEPTRON_SEQUENCE_VALUE">PERCEPTRON_SEQUENCE_VALUE</A></CODE></TD>
+<TD ALIGN="right"><CODE>"PERCEPTRON_SEQUENCE"</CODE></TD>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.model.TrainUtil.PERCEPTRON_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/model/TrainUtil.html#PERCEPTRON_VALUE">PERCEPTRON_VALUE</A></CODE></TD>
+<TD ALIGN="right"><CODE>"PERCEPTRON"</CODE></TD>
+</TR>
+</FONT></TD>
+</TR>
+</TABLE>
+
+<P>
+
+<P>
+<A NAME="opennlp.perceptron"><!-- --></A>
+<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
+<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
+<TH ALIGN="left"><FONT SIZE="+2">
+opennlp.perceptron.*</FONT></TH>
+</TR>
+</TABLE>
+
+<P>
+
+<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
+<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
+<TH ALIGN="left" COLSPAN="3">opennlp.perceptron.<A HREF="opennlp/perceptron/PerceptronTrainer.html" title="class in opennlp.perceptron">PerceptronTrainer</A></TH>
+</TR>
+<TR BGCOLOR="white" CLASS="TableRowColor">
+<A NAME="opennlp.perceptron.PerceptronTrainer.TOLERANCE_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
+<CODE>public&nbsp;static&nbsp;final&nbsp;double</CODE></FONT></TD>
+<TD ALIGN="left"><CODE><A HREF="opennlp/perceptron/PerceptronTrainer.html#TOLERANCE_DEFAULT">TOLERANCE_DEFAULT</A></CODE></TD>
+<TD ALIGN="right"><CODE>1.0E-5</CODE></TD>
+</TR>
+</FONT></TD>
+</TR>
+</TABLE>
+
+<P>
+
+<P>
+<HR>
+
+
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<A NAME="navbar_bottom"><!-- --></A>
+<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
+<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
+<TR>
+<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
+<A NAME="navbar_bottom_firstrow"><!-- --></A>
+<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
+  <TR ALIGN="center" VALIGN="top">
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
+  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
+  </TR>
+</TABLE>
+</TD>
+<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
+</EM>
+</TD>
+</TR>
+
+<TR>
+<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
+&nbsp;PREV&nbsp;
+&nbsp;NEXT</FONT></TD>
+<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
+  <A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>  &nbsp;
+&nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
+&nbsp;<SCRIPT type="text/javascript">
+  <!--
+  if(window==top) {
+    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
+  }
+  //-->
+</SCRIPT>
+<NOSCRIPT>
+  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
+</NOSCRIPT>
+
+
+</FONT></TD>
+</TR>
+</TABLE>
+<A NAME="skip-navbar_bottom"></A>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+
+<HR>
+Copyright &#169; 2011 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
+</BODY>
+</HTML>