You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KCPUInfo.java

52 lines
1.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
This class provides a means for applications to obtain information at
runtime about processor support for certain architecture extensions,
such as MMX, SSE, 3DNow and AltiVec.
@short This class provides a means for applications to obtain information at runtime about processor support for certain architecture extensions, such as MMX, SSE, 3DNow and AltiVec.
*/
public class KCPUInfo implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected KCPUInfo(Class dummy){}
/**
This enum contains the list of architecture extensions you
can query.
@short This enum contains the list of architecture extensions you can query.
*/
public static final int IntelMMX = 1<<0;
public static final int IntelSSE = 1<<1;
public static final int IntelSSE2 = 1<<2;
public static final int AMD3DNOW = 1<<3;
public static final int AltiVec = 1<<4;
public KCPUInfo() {
newKCPUInfo();
}
private native void newKCPUInfo();
/**
Returns true if the processor supports <code>extension</code>,
and false otherwise.
@param extension the feature to query.
@return If true, the processor supports <code>extension.</code>
@short Returns true if the processor supports <code>extension</code>, and false otherwise.
@see Extensions
*/
public static native boolean haveExtension(int extension);
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */
public native void dispose();
/** Has the wrapped C++ instance been deleted? */
public native boolean isDisposed();
}