|
From: <ls...@us...> - 2007-05-13 17:07:12
|
Revision: 3196
http://jnode.svn.sourceforge.net/jnode/?rev=3196&view=rev
Author: lsantha
Date: 2007-05-13 10:07:07 -0700 (Sun, 13 May 2007)
Log Message:
-----------
First merges of OpenJDK.
Added Paths:
-----------
trunk/core/src/openjdk/java/ustil/regex/package.html
Added: trunk/core/src/openjdk/java/ustil/regex/package.html
===================================================================
--- trunk/core/src/openjdk/java/ustil/regex/package.html (rev 0)
+++ trunk/core/src/openjdk/java/ustil/regex/package.html 2007-05-13 17:07:07 UTC (rev 3196)
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
+<html>
+<head>
+<!--
+Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This code is free software; you can redistribute it and/or modify it
+under the terms of the GNU General Public License version 2 only, as
+published by the Free Software Foundation. Sun designates this
+particular file as subject to the "Classpath" exception as provided
+by Sun in the LICENSE file that accompanied this code.
+
+This code is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+version 2 for more details (a copy is included in the LICENSE file that
+accompanied this code).
+
+You should have received a copy of the GNU General Public License version
+2 along with this work; if not, write to the Free Software Foundation,
+Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+CA 95054 USA or visit www.sun.com if you need additional information or
+have any questions.
+-->
+
+</head>
+<body bgcolor="white">
+
+Classes for matching character sequences against patterns specified by regular
+expressions.
+
+<p> An instance of the {@link java.util.regex.Pattern} class represents a
+regular expression that is specified in string form in a syntax similar to
+that used by Perl.
+
+<p> Instances of the {@link java.util.regex.Matcher} class are used to match
+character sequences against a given pattern. Input is provided to matchers via
+the {@link java.lang.CharSequence} interface in order to support matching
+against characters from a wide variety of input sources. </p>
+
+<p> Unless otherwise noted, passing a <tt>null</tt> argument to a method
+in any class or interface in this package will cause a
+{@link java.lang.NullPointerException NullPointerException} to be thrown.
+
+<h2>Related Documentation</h2>
+
+<p> An excellent tutorial and overview of regular expressions is <a
+href="http://www.oreilly.com/catalog/regex/"><i>Mastering Regular
+Expressions</i>, Jeffrey E. F. Friedl, O'Reilly and Associates, 1997.</a> </p>
+
+<!--
+For overviews, tutorials, examples, guides, and tool documentation, please see:
+<ul>
+ <li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
+</ul>
+-->
+
+@since 1.4
+@version 1.12, 07/05/05
+@author Mike McCloskey
+@author Mark Reinhold
+
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|