java.lang.Object
io.qt.QtObject
io.qt.qml.QQmlListProperty<T>
- All Implemented Interfaces:
QtObjectInterface
,Cloneable
public final class QQmlListProperty<T extends QtObjectInterface>
extends QtObject
implements Cloneable
The QQmlListProperty class allows applications to expose list-like properties of QObject-derived classes to QML.
Java wrapper for Qt's class QQmlListProperty
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Return the element at position index in the list property.static interface
Replace the element at position index in the list property with value.Nested classes/interfaces inherited from class io.qt.QtObject
QtObject.QPrivateConstructor
-
Constructor Summary
ConstructorDescriptionQQmlListProperty
(QObject o, QList<T> list) QQmlListProperty
(Class<T> elementType, O o, BiConsumer<O, T> appendFunction, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction, Consumer<O> clearFunction) QQmlListProperty
(Class<T> elementType, O o, BiConsumer<O, T> appendFunction, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction, Consumer<O> clearFunction, QQmlListProperty.ReplaceFunction<O, T> replaceFunction, Consumer<O> removeLastFunction) QQmlListProperty
(Class<T> elementType, O o, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction) -
Method Summary
Methods inherited from class io.qt.QtObject
dispose, equals, isDisposed
-
Constructor Details
-
QQmlListProperty
public QQmlListProperty() -
QQmlListProperty
-
QQmlListProperty
public QQmlListProperty(Class<T> elementType, O o, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction) -
QQmlListProperty
public QQmlListProperty(Class<T> elementType, O o, BiConsumer<O, T> appendFunction, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction, Consumer<O> clearFunction) -
QQmlListProperty
public QQmlListProperty(Class<T> elementType, O o, BiConsumer<O, T> appendFunction, ToLongFunction<O> countFunction, QQmlListProperty.AtFunction<O, T> atFunction, Consumer<O> clearFunction, QQmlListProperty.ReplaceFunction<O, T> replaceFunction, Consumer<O> removeLastFunction)
-
-
Method Details