io.qt.gui.QAccessibleHyperlinkInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.gui;
import io.qt.*;
/**
* Java wrapper for Qt class QAccessibleHyperlinkInterface
*/
public interface QAccessibleHyperlinkInterface extends QtObjectInterface
{
/**
* @hidden
* Implementor class for interface {@link io.qt.gui.QAccessibleHyperlinkInterface}
*/
public static abstract class Impl extends QtObject
implements io.qt.gui.QAccessibleHyperlinkInterface
{
static {
QtJambi_LibraryUtilities.initialize();
}
@NativeAccess
private static final class ConcreteWrapper extends QAccessibleHyperlinkInterface.Impl {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public java.lang.@NonNull String anchor(){
return anchor_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.String anchor_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public java.lang.@NonNull String anchorTarget(){
return anchorTarget_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.String anchorTarget_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public int endIndex(){
return endIndex_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static int endIndex_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public boolean isValid(){
return isValid_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static boolean isValid_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public int startIndex(){
return startIndex_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static int startIndex_native_constfct(long __this__nativeId);
}
/**
* See QAccessibleHyperlinkInterface:: QAccessibleHyperlinkInterface()
*/
public Impl(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QAccessibleHyperlinkInterface instance);
/**
* See QAccessibleHyperlinkInterface:: anchor()const
*/
@QtUninvokable
public abstract java.lang.@NonNull String anchor();
private native static java.lang.String anchor_native_constfct(long __this__nativeId);
/**
* See QAccessibleHyperlinkInterface:: anchorTarget()const
*/
@QtUninvokable
public abstract java.lang.@NonNull String anchorTarget();
private native static java.lang.String anchorTarget_native_constfct(long __this__nativeId);
/**
* See QAccessibleHyperlinkInterface:: endIndex()const
*/
@QtUninvokable
public abstract int endIndex();
private native static int endIndex_native_constfct(long __this__nativeId);
/**
* See QAccessibleHyperlinkInterface:: isValid()const
*/
@QtUninvokable
public abstract boolean isValid();
private native static boolean isValid_native_constfct(long __this__nativeId);
/**
* See QAccessibleHyperlinkInterface:: startIndex()const
*/
@QtUninvokable
public abstract int startIndex();
private native static int startIndex_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected Impl(QPrivateConstructor p) { super(p); }
}
/**
* See QAccessibleHyperlinkInterface:: anchor()const
*/
@QtUninvokable
public java.lang.@NonNull String anchor();
/**
* See QAccessibleHyperlinkInterface:: anchorTarget()const
*/
@QtUninvokable
public java.lang.@NonNull String anchorTarget();
/**
* See QAccessibleHyperlinkInterface:: endIndex()const
*/
@QtUninvokable
public int endIndex();
/**
* See QAccessibleHyperlinkInterface:: isValid()const
*/
@QtUninvokable
public boolean isValid();
/**
* See QAccessibleHyperlinkInterface:: startIndex()const
*/
@QtUninvokable
public int startIndex();
}