Imported Classpath 0.18.
* sources.am, Makefile.in: Updated. * Makefile.am (nat_source_files): Removed natProxy.cc. * java/lang/reflect/natProxy.cc: Removed. * gnu/classpath/jdwp/VMFrame.java, gnu/classpath/jdwp/VMIdManager.java, gnu/classpath/jdwp/VMVirtualMachine.java, java/lang/reflect/VMProxy.java: New files. 2005-09-23 Thomas Fitzsimmons <fitzsim@redhat.com> * scripts/makemake.tcl (verbose): Add gnu/java/awt/peer/qt to BC list. 2005-09-23 Thomas Fitzsimmons <fitzsim@redhat.com> * gnu/java/net/DefaultContentHandlerFactory.java (getContent): Remove ClasspathToolkit references. 2005-09-23 Thomas Fitzsimmons <fitzsim@redhat.com> * gnu/awt/xlib/XCanvasPeer.java: Add new peer methods. * gnu/awt/xlib/XFramePeer.java: Likewise. * gnu/awt/xlib/XGraphicsConfiguration.java: Likewise. 2005-09-23 Thomas Fitzsimmons <fitzsim@redhat.com> * Makefile.am (libgcjawt_la_SOURCES): Remove jawt.c. Add classpath/native/jawt/jawt.c. * Makefile.in: Regenerate. * jawt.c: Remove file. * include/Makefile.am (tool_include__HEADERS): Remove jawt.h and jawt_md.h. Add ../classpath/include/jawt.h and ../classpath/include/jawt_md.h. * include/Makefile.in: Regenerate. * include/jawt.h: Regenerate. * include/jawt_md.h: Regenerate. From-SVN: r104586
This commit is contained in:
parent
9b044d1951
commit
1ea63ef8be
544 changed files with 34724 additions and 14512 deletions
|
@ -41,7 +41,6 @@ package java.text;
|
|||
import java.util.Locale;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
import java.util.StringTokenizer;
|
||||
|
||||
/**
|
||||
* This class acts as container for locale specific date/time formatting
|
||||
|
@ -289,7 +288,7 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* This is a two element <code>String</code> array indexed by
|
||||
* <code>Calendar.AM</code> and <code>Calendar.PM</code>
|
||||
*
|
||||
* @param ampms The new list of AM/PM display strings.
|
||||
* @param value The new list of AM/PM display strings.
|
||||
*/
|
||||
public void setAmPmStrings (String[] value)
|
||||
{
|
||||
|
@ -302,11 +301,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* This is a two element <code>String</code>
|
||||
* array indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.
|
||||
*
|
||||
* @param eras The new list of era disply strings.
|
||||
* @param labels The new list of era display strings.
|
||||
*/
|
||||
public void setEras (String[] value)
|
||||
public void setEras (String[] labels)
|
||||
{
|
||||
eras = value;
|
||||
eras = labels;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -340,11 +339,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* <li>17 - time zone (z)</li>
|
||||
* </ul>
|
||||
*
|
||||
* @param localPatternChars The new format patter characters
|
||||
* @param chars The new format pattern characters
|
||||
*/
|
||||
public void setLocalPatternChars (String value)
|
||||
public void setLocalPatternChars (String chars)
|
||||
{
|
||||
localPatternChars = value;
|
||||
localPatternChars = chars;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -354,11 +353,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* <code>Calendar.UNDECEMBER</code>. Note that there are thirteen
|
||||
* elements because some calendars have thriteen months.
|
||||
*
|
||||
* @param months The list of month display strings.
|
||||
* @param labels The list of month display strings.
|
||||
*/
|
||||
public void setMonths (String[] value)
|
||||
public void setMonths (String[] labels)
|
||||
{
|
||||
months = value;
|
||||
months = labels;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -369,11 +368,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* through <code>Calendar.UNDECEMBER</code>. Note that there are thirteen
|
||||
* elements because some calendars have thirteen months.
|
||||
*
|
||||
* @param shortMonths The new list of abbreviated month display strings.
|
||||
* @param labels The new list of abbreviated month display strings.
|
||||
*/
|
||||
public void setShortMonths (String[] value)
|
||||
public void setShortMonths (String[] labels)
|
||||
{
|
||||
shortMonths = value;
|
||||
shortMonths = labels;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -384,11 +383,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* through <code>Calendar.SATURDAY</code>. Note that the first element
|
||||
* of this array is ignored.
|
||||
*
|
||||
* @param shortWeekdays This list of abbreviated weekday display strings.
|
||||
* @param labels This list of abbreviated weekday display strings.
|
||||
*/
|
||||
public void setShortWeekdays (String[] value)
|
||||
public void setShortWeekdays (String[] labels)
|
||||
{
|
||||
shortWeekdays = value;
|
||||
shortWeekdays = labels;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -398,11 +397,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* through <code>Calendar.SATURDAY</code>. Note that the first element
|
||||
* of this array is ignored.
|
||||
*
|
||||
* @param weekdays This list of weekday display strings.
|
||||
* @param labels This list of weekday display strings.
|
||||
*/
|
||||
public void setWeekdays (String[] value)
|
||||
public void setWeekdays (String[] labels)
|
||||
{
|
||||
weekdays = value;
|
||||
weekdays = labels;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -418,11 +417,11 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
* <li>4 - the short name of the time zone (daylight savings time).</li>
|
||||
* </ul>
|
||||
*
|
||||
* @return The list of time zone display strings.
|
||||
* @params zones The list of time zone display strings.
|
||||
*/
|
||||
public void setZoneStrings (String[][] value)
|
||||
public void setZoneStrings (String[][] zones)
|
||||
{
|
||||
zoneStrings = value;
|
||||
zoneStrings = zones;
|
||||
}
|
||||
|
||||
/* Does a "deep" equality test - recurses into arrays. */
|
||||
|
@ -492,7 +491,7 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
|
|||
/**
|
||||
* Returns a new copy of this object.
|
||||
*
|
||||
* @param A copy of this object
|
||||
* @return A copy of this object
|
||||
*/
|
||||
public Object clone ()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue