summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 2007-04-03 Francis Kung <fkung@redhat.com>Francis Kung2007-04-032-1/+6
| | | | | * gnu/java/awt/peer/gtk/FreetypeGlyphVector.java (getGlyphs(int[], int[], long[])): Return void.
* 2007-04-03 Kyle Galloway <kgallowa@redhat.com>Kyle Galloway2007-04-032-0/+96
| | | | * gnu/classpath/jdwp/value/ArrayValue.java: New file.
* 2007-04-03 Roman Kennke <roman@kennke.org>Roman Kennke2007-04-034-13/+76
| | | | | | | | | | | | | | | | | | | | | | * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c (global_lock): New global variable that holds the object reference to the global GTK lock. (init_glib_threads): Add lock argument. Use gdk_threads_set_lock_functions to replace GTK's locking function with two callbacks that allow reentrant locking, based on JNI's MonitorEnter() and MonitorExit(). (jni_lock_cb): New callback function for GTK locking. (jni_unlock_cb): New callback function for GTK unlocking. (Java_gnu_java_awt_peer_gtk_GtkToolkit_gtkInit): Add lock argument. Call init_glib_threads() with lock object. * include/gnu_java_awt_peer_gtk_GtkToolkit.h Regenerated. * gnu/java/awt/peer/gtk/GtkToolkit.java (GTK_LOCK): New static field. This is used as the global lock for GTK. (gtkInit): Add lock parameter. (static_init): Initialize global lock and call gtkInit() with that lock.
* 2007-04-02 Francis Kung <fkung@redhat.com>Francis Kung2007-04-024-1/+49
| | | | | | | | | | | | | * gnu/java/awt/peer/gtk/FreetypeGlyphVector.java (fontSet): Initialize to null. (FreetypeGlyphVector(Font, int[], FontRenderContext)): Populate fontSet array with default font if needed. (FreetypeGlyphVector(FreetypeGlyphVector)): Clone all fields. (getNativeFontPointer): New native method. * include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h: Regenerated. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getNativeFontPointer): New function.
* 2007-04-02 Francis Kung <fkung@redhat.com>Francis Kung2007-04-022-0/+10
| | | | | * INSTALL: Document known bug in at-spi, atk, and gail packages prior to version 1.18.0.
* 2007-04-02 Francis Kung <fkung@redhat.com>Francis Kung2007-04-0210-54/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/java/awt/peer/gtk/CairoGraphics2D.java (cairoDrawGlyphVector): Added parameter. (drawGlyphVector): Retrieve and pass fontset parameter. * gnu/java/awt/peer/gtk/ComponentGraphics.java (cairoDrawGlyphVector): Added parameter. (lock): Removed unnecessary cast. (unlock): Removed unnecessary cast and explicitly set to ONE variable. * gnu/java/awt/peer/gtk/FreetypeGlyphVector.java (fontSet): New field. (dispose): New native method. (finalize): New method. (getGlyphFonts): New method. (getGlyphOutline): Pass fontSet parameter to native method. (getGlyphOutlineNative): Added parameter. (getGlyphs): Pass extra parameters to native method. (getGlyphsNative): Added parameters. (getKerning): Added fontSet parameter. (getMetricsNative): Added fontSet parameter. (performDefaultLayout): Only check kerning if glyphs use the same font. (setupGlyphMetrics): Pass extra parameters to native methods. * include/gnu_java_awt_peer_gtk_CairoGraphics2D.h, * include/gnu_java_awt_peer_gtk_FreetypGlyphVector.h: Regenerated. * native/jni/gtk-peer/gdkfont.h: Enable pango engine. (peerfont): Add variable for fontset. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoGraphics2D.c (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoDrawGlyphVector): Accept array of font pointers to use when drawing glyphs. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c (getFontSet): New function. (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_dispose): New function. (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getGlyphOutlineNative): Added and use new fontSet parameter. (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getGlyphs): Use pango to retrieve glyphs and estimate font, if the current font does not contain a requested glyph. (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getKerning): Added and use new fontSet parameter. (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getMetricsNative): Added and use new fontSet parameter. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c (Java_gnu_java_awt_peer_gtk_GdkFontPeer_dispose): Free fontset. (Java_gnu_java_awt_peer_gtk_GdkFontPeer_setFont): Load fontset.
* 2007-04-02 Andrew Haley <aph@redhat.com>Andrew Haley2007-04-023-1/+10
| | | | | | * javax/management/ObjectName.java: Handle 0-length names. * javax/management/MBeanServerFactory.java: Use the domain that we've been passed, not the fixed string "DefaultDomain".
* * org/omg/CORBA/DynAny.java: Mark as deprecated.Mark Wielaard2007-04-0110-9/+57
| | | | | | | | | | | | | | | | | * org/omg/CORBA/DynArray.java: Likewise. * org/omg/CORBA/DynEnum.java: Likewise. * org/omg/CORBA/DynFixed.java: Likewise. * org/omg/CORBA/DynSequence.java: Likewise. * org/omg/CORBA/DynStruct.java: Likewise. * org/omg/CORBA/DynUnion.java: Likewise. * org/omg/CORBA/DynValue.java: Likewise. * org/omg/CORBA/ORB.java (create_basic_dyn_any): Likewise. (create_dyn_any): Likewise. (create_dyn_array): likewise. (create_dyn_enum): Likewise. (create_dyn_sequence): Likewise. (create_dyn_struct): Likewise. (create_dyn_union): Likewise.
* 2007-04-01 Andrew John Hughes <gnu_andrew@member.fsf.org>Andrew John Hughes2007-04-014-5/+43
| | | | | | | | | | | | | * gnu/javax/management/Translator.java: (fromJava(Object[],Method)): Use the array from the parameter not the newly created one... (fromJava(Object, Type)): Support MXBeans. * javax/management/JMX.java: (newMXBeanProxy(MBeanServerConnection,ObjectName,Class)): Call newMXBeanProxy rather than newMBeanProxy. * javax/management/StandardMBean.java: (setAttribute(Attribute)): Use InvocationTargetException as cause.
* 2007-03-31 Jeroen Frijters <jeroen@frijters.net>Jeroen Frijters2007-03-312-1/+8
| | | | | | PR classpath/31402: * java/util/concurrent/CopyOnWriteArrayList.java (remove): Fixed ArrayIndexOutOfBoundsException when index == 0.
* 2007-03-30 Andrew John Hughes <gnu_andrew@member.fsf.org>Andrew John Hughes2007-03-302-0/+195
| | | | | * javax/management/openmbean/CompositeDataInvocationHandler.java: New file.
* Update copyright header.Kyle Galloway2007-03-301-1/+1
|
* 2007-03-30 Kyle Galloway <kgallowa@redhat.com>Kyle Galloway2007-03-302-4/+9
| | | | | * gnu/classpath/jdwp/util/VariableTable.java: Make argCnt and slots ints. (write): Replace writeLong with writeInt for above.
* PR libgcj/29869:Tom Tromey2007-03-302-9/+15
| | | | | * gnu/java/util/jar/JarUtils.java (log): Commented out. (readSFManifest): Don't log.
* PR libgcj/29869:Tom Tromey2007-03-302-2/+17
| | | | | | * java/util/logging/LogManager.java (readConfiguration): Handle comma-separated 'handlers'. Don't try to add a non-existing handler.
* Grr. Wrong patch. Ignore the previous version.Keith Seitz2007-03-301-6/+3
|
* * gnu/classpath/jdwp/event/ThreadStartEvent.java (Event):Keith Seitz2007-03-293-16/+36
| | | | | | | Event type is "THREAD_START" not "THERAD_END". * gnu/classpath/jdwp/transport/SocketTransport.java (ITransport): Handle configure strings ":port" and "port".
* 2007-03-29 Francis Kung <fkung@redhat.com>Francis Kung2007-03-292-34/+5
| | | | | * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c (Java_gnu_java_awt_peer_gtk_GtkToolkit_gtkInit): Revert last patch.
* * native/jni/java-nio/Makefile.am (LIBADD): Add libclasspathnative.Mark Wielaard2007-03-292-0/+5
|
* 2007-03-28 Andrew John Hughes <gnu_andrew@member.fsf.org>Andrew John Hughes2007-03-282-15/+149
| | | | | | | | * javax/management/StandardMBean.java: (setAttribute(Attribute)): Add handling of primitive types and subtype parameters. (getMutator(String,Class<?>)): New helper method to return the mutator.
* 2007-03-28 Roman Kennke <roman@kennke.org>Roman Kennke2007-03-283-434/+353
| | | | | | * java/io/OutputStreamWriter.java, * java/io/InputStreamReader.java: Revert big stream patch due to problems.
* PR classpath/31303:Tom Tromey2007-03-282-0/+11
| | | | | * external/sax/org/xml/sax/helpers/XMLReaderFactory.java (createXMLReader): Code in Classpath default.
* PR classpath/31276:Tom Tromey2007-03-282-2/+8
| | | | | * native/jni/java-lang/java_lang_VMDouble.c (parseDoubleFromChars): Use %p, not %i.
* * native/jni/java-nio/Makefile.am (LIBADD): Don't addMark Wielaard2007-03-283-5/+9
| | | | | | libclasspathnative. * native/jni/java-nio/gnu_java_nio_VMChannel.c (Java_gnu_java_nio_VMChannel_open): Don't set and reset umask.
* 2007-03-27 Francis Kung <fkung@redhat.com>Francis Kung2007-03-272-0/+40
| | | | | | * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c (Java_gnu_java_awt_peer_gtk_GtkToolkit_gtkInit): Prevent loading of accessibility modules as temporary workaround for Gnome bug.
* 2007-03-27 Kyle Galloway <kgallowa@redhat.com>Kyle Galloway2007-03-272-1/+6
| | | | | * gnu/classpth/jdwp/processor/ThreadReferenceCommandSet.java (executeResume): Change to call VMVirtualMachine.resumeThread.
* 2007-03-27 Roman Kennke <roman@kennke.org>Roman Kennke2007-03-274-347/+501
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/io/InputStreamReader.java (BUFFER_SIZE): New constant. (bytesCache): Removed. (cacheLock): Removed. (hasSavedSurrogate): Removed. (lastArray): New field. Used for caching CharBuffers. (lastBuffer): New field. Used for caching CharBuffers. (maxBytesPerChar): Removed. (oneChar): New field. Caches a char array for read(). (savedSurrogate): New field. (InputStreamReader): (all constructors) Cleaned up. Use initDecoderAndBuffer() method. Check for null parameters. Use new EncodingHelper.getDefaultCharset() for fetching the default charset. (decode): New helper method. Decodes using the NIO decoder or using a raw Latin1 decoding. (getCharBuffer): New helper method. Implements caching of CharBuffers for output arrays. (initDecoderAndBuffer): New helper method. Initializes the decoder and input buffer. (read): Use cached array. (read(char[],int,int)): Reworked using a cleaner NIO based implementation. This decodes the incoming data in bigger chunks rather then calling the decoder for each character. (ready): Also check the input buffer. (refillInputBuffer): New helper methods. Refills the input buffer when it runs out of data. * java/io/OutputStreamWriter.java (lastArray): Implements caching of the output array buffer. (lastBuffer): Implements caching of the output array buffer. (oneChar): New field. Caches a char array for write(). (outputBuffer): Make this a ByteBuffer. (OutputStreamWriter): (all constructors) Cleaned up. Use initEncoderAndBuffer() method. Check for null parameters. Use new EncodingHelper.getDefaultCharset() for fetching the default charset. (encode): New helper method. Encodes the input buffer to the output buffer using either the NIO encoder or a raw Latin1 encoding. (encodeChars): New helper method. The encoding loop. (flush): Directly use the array of the output buffer. (getCharBuffer): New helper method. Implements caching of the output buffer. (initEncoderAndBuffer): New helper method for initialization. (write(char[],int,int)): Reworked to make better use of the NIO encoders. (write): Use cached array. (write(String,int,int)): Don't copy the string but rather wrap it and handle it the same as the wrapped char array. (writeConvert): Removed. * gnu/java/nio/charset/EncodingHelper.java (getDefaultCharset): New method. Returns the default charset for the case when the file.encoding charset is not valid. This always returns an UTF8 codec.
* 2007-03-27 Roman Kennke <kennke@aicas.com>Roman Kennke2007-03-273-6/+29
| | | | | | | | | | | | * java/awt/Frame.java (weakFrames): Make this generic and package private. (noteFrame): Use generic WeakReference. * java/awt/EventQueue.java (isShutdown): Iterate over the weakFrames directly, rather than using Frame.getFrames(). The latter iterates several times over weakFrames completely and creates a new array on each call. The former iterates only once and aborts when it finds a frame which is displayable.
* 2007-03-27 Roman Kennke <kennke@aicas.com>Roman Kennke2007-03-272-2/+8
| | | | | | * javax/swing/JScrollBar.java (getUnitIncrement(int)): Don't multiply direction parameter. (getBlockIncrement(int)): Don't multiply direction parameter.
* * doc/cp-tools.texinfo (gcjh Tool): Added more text.Tom Tromey2007-03-262-2/+15
| | | | (rmid Tool): Likewise.
* Un-DOS-ify ChangeLogTom Tromey2007-03-261-1617/+1622
|
* 2007-03-26 Stepan Kasal <skasal@redhat.com> Tom Tromey2007-03-262-1/+14
| | | | | | * tools/gnu/classpath/tools/javah/Main.java (cniOrJniSeen): New field. (getParser): Use new field.
* added documentation for gcjhDalibor Topic2007-03-253-1606/+1680
|
* 2007-03-23 Jeroen Frijters <jeroen@frijters.net>Jeroen Frijters2007-03-233-1/+10
| | | | | | | * java/net/ServerSocket.java (implAccept): set implCreated flag on socket. * java/net/Socket.java (implCreated): Make package accessible for ServerSocket.
* 2007-03-22 Casey Marshall <csm@gnu.org>Casey Marshall2007-03-232-1/+13
| | | | | | * gnu/javax/net/ssl/provider/ClientHandshake.java (RSAGen.implRun): check keyEncipherment bit of the certificate, and just pass the public key to the cipher.
* 2007-03-20 Mario Torre <neugens@limasoftware.net>Mario Torre2007-03-202-1/+6
| | | | | * configure.ac: GConf requirement for building the java.util.prefs backend are relaxed down to version 2.6.0 (instead of 2.11.2).
* 2007-03-19 Mario Torre <neugens@limasoftware.net>Mario Torre2007-03-192-7/+11
| | | | | | | | * gnu/java/awt/peer/KDEDesktopPeer.java: (mail): Fixed error dialog in KDE when the mail method is called without argument; now opens the default mailer with a blank window. (getCommand): Handle the use of kprinter as default print command for KDE. (supportCommand): Enable the print command when a KDE desktop is detected.
* 2007-03-19 Jeroen Frijters <jeroen@frijters.net>Jeroen Frijters2007-03-192-1/+24
| | | | | | | * java/net/Socket.java (implCreated): New field. (getImpl): Call impl.create() if it hasn't been called yet. (bind): Removed explicit impl.create() call.
* * javax/crypto/CipherOutputStream.java (write): Use out.write()Mark Wielaard2007-03-192-1/+6
| | | | not super.write().
* * configure.ac (COMPILE_PLUGIN): Check for gtk+-2.0 >= 2.8Mark Wielaard2007-03-192-1/+6
| | | | gthread-2.0 >= 2.2 and gdk-pixbuf-2.0
* * tools/gnu/classpath/tools/javah/Main.java (run): Use class'Tom Tromey2007-03-172-2/+7
| | | | name in File case.
* 2007-03-16 Thomas Fitzsimmons <fitzsim@redhat.com>Thomas Fitzsimmons2007-03-172-3/+7
| | | | | | * resource/com/sun/tools/javac/messages.properties (Main.FailedToRead, Main.MalformedURL, Main.FailedToLoad): Clarify messages for when --with-ecj-jar is not specified.
* 2007-03-16 Thomas Fitzsimmons <fitzsim@redhat.com>Thomas Fitzsimmons2007-03-173-14/+9
| | | | | | * configure.ac (FOUND_ECJ_JAR): Remove conditional. * tools/Makefile.am: Build com.sun.tools.javac package unconditionally.
* * configure.ac (COMPILE_PLUGIN): Stop when no plugin headers found.Mark Wielaard2007-03-162-0/+12
| | | | Also check for gtk+ dependency.
* * tools/gnu/classpath/tools/javah/JniStubPrinter.javaTom Tromey2007-03-167-21/+50
| | | | | | | | | | | | | | | | (printClass): Added filename argument. * tools/gnu/classpath/tools/javah/JniIncludePrinter.java (printClass): Added filename argument. * tools/gnu/classpath/tools/javah/CniIncludePrinter.java (printClass): Use user's file name. * tools/gnu/classpath/tools/javah/CniStubPrinter.java (printClass): Use user's file name. * tools/gnu/classpath/tools/javah/Printer.java (printClass): Added filename argument. * tools/gnu/classpath/tools/javah/Main.java (getParser): Fix '-v' argument order. (writeHeaders): Use a HashMap. (run): Put class name into HashMap for writeHeaders.
* 2007-03-16 Francis Kung <fkung@redhat.com>Francis Kung2007-03-166-313/+634
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/java/awt/peer/gtk/CairoGraphics2D.java (cairoArc): Make protected rather than private so it can be over-ridden. (cairoClip): Likewise. (cairoClosePath): Likewise. (cairoCurveTo): Likewise. (cairoDrawGlyphVector): Likewise. (cairoFill): Likewise. (cairoLineTo): Likewise. (cairoMoveTo): Likewise. (cairoNewPath): Likewise. (cairoRectangle): Likewise. (cairoResetClip): Likewise. (cairoRestore): Likewise. (cairoSave): Likewise. (cairoScale): Likewise. (cairoSetAntialias): Likewise. (cairoSetDash): Likewise. (cairoSetFillRule): Likewise. (cairoSetFont): Likewise. (cairoSetLine): Likewise. (cairoSetMatrix): Likewise. (cairoSetOperator): Likewise. (cairoSetRGBAColor): Likewise. (cairoStroke): Likewise. (drawPixels): Likewise. (init): Likewise. (setGradient): Likewise. (setPaintPixels): Likewise. (cairoDrawLine): Removed. (cairoDrawRect): Removed. (cairoFillRect): Removed. (cairoPreserveClip): Removed. (cairoRelCurveTo): Removed. (cairoRelLineTo): Removed. (cairoRelMoveTo): Removed. * gnu/java/awt/peer/gtk/ComponentGraphics.java (cairoArc): New method wrapping superclass method in locks. (cairoClip): Likewise. (cairoClosePath): Likewise. (cairoCurveTo): Likewise. (cairoDrawGlyphVector): Likewise. (cairoFill): Likewise. (cairoLineTo): Likewise. (cairoMoveTo): Likewise. (cairoNewPath): Likewise. (cairoRectangle): Likewise. (cairoResetClip): Likewise. (cairoRestore): Likewise. (cairoSave): Likewise. (cairoScale): Likewise. (cairoSetAntialias): Likewise. (cairoSetDash): Likewise. (cairoSetFillRule): Likewise. (cairoSetFont): Likewise. (cairoSetLine): Likewise. (cairoSetMatrix): Likewise. (cairoSetOperator): Likewise. (cairoSetRGBAColor): Likewise. (cairoStroke): Likewise. (disposeNative): Likewise. (drawPixels): Likewise. (init): Likewise. (setGradient): Likewise. (setPaintPixels): Likewise. (draw): Do not lock, as locking is now done in the wrapped native methods. (drawComposite): Likewise. (drawGlyphVector): Likewise. (drawImage): Likewise. (drawRenderedImage): Likewise. (fill): Likewise. (setClip): Removed. (lock): Added documentation. (unlock): Added documentation. * include/gnu_java_awt_peer_gtk_CairoGraphics2D.h: Regenerated. * include/gnu_java_awt_peer_gtk_CairoSurface.h: Regenerated. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoGraphics2D.c (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoDrawLine): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoDrawRect): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoFillRect): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoPreserveClip): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoRelCurveTo): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoRelLineTo): Removed. (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoRelMoveTo): Removed.
* 2007-03-11 Andrew John Hughes <gnu_andrew@member.fsf.org>Andrew John Hughes2007-03-114-35/+425
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * javax/management/openmbean/ArrayType.java: (getArrayClassName(String, int)): Replaced by... (getArrayClassName(OpenType, int, boolean)): Returns appropriate class name for the array. (getDimensions(OpenType, int)): New method. (getPrimitiveType(Class<?>)): Likewise. (getPrimitiveTypeClass(OpenType<?>)): Likewise. (getElementType(OpenType<?>)): Likewise. (getElementTypeName(OpenType<?>)): Likewise. (ArrayType(int, OpenType<?>)): Rewritten to handle ArrayTypes as input. (ArrayType(SimpleType<?>, boolean)): New constructor. (equals(Object)): Handle primitiveArray flag. (hashCode()): Likewise. (getArrayType(OpenType<E>)): New method. (getPrimitiveArrayType(Class<T>)): Likewise. (isPrimitiveArray()): Likewise. (toString()): Updated to list primitiveArray flag. * javax/management/openmbean/OpenType.java: (OpenType(String,String,String)): Use Class.forName() and methods of Class to validate arrays. * javax/management/openmbean/SimpleType.java: Include causal exception when creating pre-defined types throws an exception.
* 2007-03-09 Andreas Tobler <a.tobler@schweiz.org>Andreas Tobler2007-03-092-3/+11
| | | | | | | | Port change from gcc: 2007-03-06 Matthias Klose <doko@ubuntu.com> * doc/Makefile.am(gkeytool.pod): Don't use sed -i.
* 2007-03-09 Kyle Galloway <kgallowa@redhat.com>Kyle Galloway2007-03-0923-325/+1624
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/classpath/jdwp/exception/InvalidTagException.java: New file. * gnu/classpath/jdwp/processor/ArrayReferenceCommandSet.java (executeGetValues): Use Value type. (exectureSetValues): Ditto. * gnu/classpath/jdwp/processor/ClassTypeCommandSet.java (executeGetValues): Use Value type. (executeSetValues): Ditto. (invokeMethod): Record method return type. * gnu/classpath/jdwp/processor/ObjectReferenceCommandSet.java (executeGetValues): Use Value type. (executeSetValues): Ditto. * gnu/classpath/jdwp/processor/ReferenceTypeCommandSet.java (executeGetValues): Use Value type. * gnu/classpath/jdwp/processor/StackFrameCommandSet.java (executeGetValues): Use Value type. (executeSetValues): Ditto. * gnu/classpath/jdwp/util/MethodResult.java: Add resType to store return type. (getResultType): New Method. (setResultType): Ditto. * gnu/classpath/jdwp/util/Value.java: Remove. * gnu/classpath/jdwp/value: New Package. * gnu/classpath/jdwp/value/Value.java: New file. * gnu/classpath/jdwp/value/BooleanValue.java: New file. * gnu/classpath/jdwp/value/ByteValue.java: New file. * gnu/classpath/jdwp/value/CharValue.java: New file. * gnu/classpath/jdwp/value/DoubleValue.java: New file. * gnu/classpath/jdwp/value/FloatValue.java: New file. * gnu/classpath/jdwp/value/IntValue.java: New file. * gnu/classpath/jdwp/value/LongValue.java: New file. * gnu/classpath/jdwp/value/ObjectValue.java: New file. * gnu/classpath/jdwp/value/ShortValue.java: New file. * gnu/classpath/jdwp/value/StringValue.java: New file. * gnu/classpath/jdwp/value/ValueFactory.java: New file. * gnu/classpath/jdwp/value/VoidValue.java: New file.
* 2007-03-09 Roman Kennke <kennke@aicas.com>Roman Kennke2007-03-092-5/+21
| | | | | | * java/awt/image/SinglePixelPackageSampleModel.java (createDataBuffer): Avoid use of Buffers class and create DataBuffer directly in place.