io.qt.qt3d.animation.QAnimationAspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-qt3danimation Show documentation
Show all versions of qtjambi-qt3danimation Show documentation
The Qt 3D Animation modules provides a set of prebuilt elements to help you get started with Qt 3D.
package io.qt.qt3d.animation;
import io.qt.*;
/**
* Provides key-frame animation capabilities to Qt 3D
* Java wrapper for Qt class Qt3DAnimation::QAnimationAspect
*/
public class QAnimationAspect extends io.qt.qt3d.core.QAbstractAspect
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QAnimationAspect.class);
/**
* See Qt3DAnimation::QAnimationAspect:: QAnimationAspect(QObject*)
*/
public QAnimationAspect(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QAnimationAspect instance, io.qt.core.QObject parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QAnimationAspect(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QAnimationAspect(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QAnimationAspect instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QAnimationAspect(io.qt.core.QObject)}
* with parent = null
.
*/
public QAnimationAspect() {
this((io.qt.core.QObject)null);
}
}