f06a83c0b2
libjava/ 2007-08-04 Matthias Klose <doko@ubuntu.com> Import GNU Classpath (libgcj-import-20070727). * Regenerate class and header files. * Regenerate auto* files. * include/jvm.h: * jni-libjvm.cc (Jv_JNI_InvokeFunctions): Rename type. * jni.cc (_Jv_JNIFunctions, _Jv_JNI_InvokeFunctions): Likewise. * jni.cc (_Jv_JNI_CallAnyMethodA, _Jv_JNI_CallAnyVoidMethodA, _Jv_JNI_CallMethodA, _Jv_JNI_CallVoidMethodA, _Jv_JNI_CallStaticMethodA, _Jv_JNI_CallStaticVoidMethodA, _Jv_JNI_NewObjectA, _Jv_JNI_SetPrimitiveArrayRegion): Constify jvalue parameter. * java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Likewise. * java/lang/VMFloat.java (toString, parseFloat): New. * gnu/awt/xlib/XToolkit.java (setAlwaysOnTop, isModalityTypeSupported, isModalExclusionTypeSupported): New (stub only). * gnu/awt/xlib/XCanvasPeer.java (requestFocus): Likewise. * gnu/awt/xlib/XFramePeer.java (updateMinimumSize, updateIconImages, updateFocusableWindowState, setModalBlocked, getBoundsPrivate, setAlwaysOnTop): Likewise. * gnu/awt/xlib/XFontPeer.java (canDisplay): Update signature. * scripts/makemake.tcl: Ignore gnu/javax/sound/sampled/gstreamer, ignore javax.sound.sampled.spi.MixerProvider, ignore .in files. * HACKING: Mention --enable-gstreamer-peer, removal of generated files. libjava/classpath/ 2007-08-04 Matthias Klose <doko@ubuntu.com> * java/util/EnumMap.java (clone): Add cast. From-SVN: r127204
45 lines
914 B
C++
45 lines
914 B
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __gnu_java_math_Fixed__
|
|
#define __gnu_java_math_Fixed__
|
|
|
|
#pragma interface
|
|
|
|
#include <java/lang/Object.h>
|
|
extern "Java"
|
|
{
|
|
namespace gnu
|
|
{
|
|
namespace java
|
|
{
|
|
namespace math
|
|
{
|
|
class Fixed;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class gnu::java::math::Fixed : public ::java::lang::Object
|
|
{
|
|
|
|
Fixed();
|
|
public:
|
|
static jint div(jint, jint, jint);
|
|
static jint mul(jint, jint, jint);
|
|
static jint ceil(jint, jint);
|
|
static jint floor(jint, jint);
|
|
static jint trunc(jint, jint);
|
|
static jint round(jint, jint);
|
|
static jfloat floatValue(jint, jint);
|
|
static jdouble doubleValue(jint, jint);
|
|
static jint fixedValue(jint, jfloat);
|
|
static jint fixedValue(jint, jdouble);
|
|
static jint intValue(jint, jint);
|
|
static jint roundIntValue(jint, jint);
|
|
static ::java::lang::Class class$;
|
|
};
|
|
|
|
#endif // __gnu_java_math_Fixed__
|