mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 09:34:14 +08:00
Date.java: Fixed documentation starting tag to make javadoc happy.
2003-03-24 Michael Koch <konqueror@gmx.de> * java/util/Date.java: Fixed documentation starting tag to make javadoc happy. * java/util/regex/Pattern.java (Pattern): Implements Serializable. * java/util/PatternSyntaxException.java (serialVersionUID): New member variable. From-SVN: r64799
This commit is contained in:
parent
050d3e13d8
commit
1ab1cf4ecc
@ -1,3 +1,12 @@
|
||||
2003-03-24 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/util/Date.java:
|
||||
Fixed documentation starting tag to make javadoc happy.
|
||||
* java/util/regex/Pattern.java
|
||||
(Pattern): Implements Serializable.
|
||||
* java/util/PatternSyntaxException.java
|
||||
(serialVersionUID): New member variable.
|
||||
|
||||
2003-03-24 Michael Koch <koqnueror@gmx.de>
|
||||
|
||||
* java/awt/ContainerOrderFocusTraversalPolicy.java
|
||||
|
@ -108,7 +108,7 @@ public class Date implements Cloneable, Comparable, java.io.Serializable
|
||||
min).getTimeInMillis();
|
||||
}
|
||||
|
||||
/*
|
||||
/**
|
||||
* Creates a new Date Object representing the given time.
|
||||
* @deprecated use <code>new GregorianCalendar(year+1900, month,
|
||||
* day)</code> instead.
|
||||
|
@ -38,7 +38,9 @@ exception statement from your version. */
|
||||
// Stub class until java.util.regex is implemented.
|
||||
package java.util.regex;
|
||||
|
||||
public class Pattern
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Pattern implements Serializable
|
||||
{
|
||||
public static Pattern compile(String regex)
|
||||
{
|
||||
|
@ -44,6 +44,7 @@ package java.util.regex;
|
||||
*/
|
||||
public class PatternSyntaxException extends IllegalArgumentException
|
||||
{
|
||||
private static final long serialVersionUID = -3864639126226059218L;
|
||||
|
||||
/**
|
||||
* Human readable escription of the syntax error.
|
||||
|
Loading…
Reference in New Issue
Block a user