Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java')
-rw-r--r--qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java b/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java
index 5e45b9e470d..02669dd86ac 100644
--- a/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java
+++ b/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/index/IQmlRegistration.java
@@ -58,7 +58,7 @@ public interface IQmlRegistration extends IQObject.IMember {
* Returns QObject to which this registration applies. In the sample at {@link IQmlRegistration}
* this would return the IQObject for Q.
*/
- public IQObject getQObject();
+ public IQObject getQObject();
/**
* Returns the specific revision of the IQObject that was registered. Returns null if no
@@ -82,35 +82,35 @@ public interface IQmlRegistration extends IQObject.IMember {
* @see IQMethod#getRevision()
* @see IQProperty#getRevision()
*/
- public Long getVersion();
+ public Long getVersion();
- /**
- * Returns the literal value of the first argument to the function if it can be
- * resolved and null otherwise.
- */
- public String getURI();
+ /**
+ * Returns the literal value of the first argument to the function if it can be
+ * resolved and null otherwise.
+ */
+ public String getURI();
- /**
- * Returns the literal value of the second argument to the function if it can be
- * resolved and null otherwise.
- */
- public Long getMajor();
+ /**
+ * Returns the literal value of the second argument to the function if it can be
+ * resolved and null otherwise.
+ */
+ public Long getMajor();
- /**
- * Returns the literal value of the third argument to the function if it can be
- * resolved and null otherwise.
- */
- public Long getMinor();
+ /**
+ * Returns the literal value of the third argument to the function if it can be
+ * resolved and null otherwise.
+ */
+ public Long getMinor();
- /**
- * Returns the literal value of the fourth argument to the function if it can be
- * resolved and null otherwise.
- */
- public String getQmlName();
+ /**
+ * Returns the literal value of the fourth argument to the function if it can be
+ * resolved and null otherwise.
+ */
+ public String getQmlName();
- /**
- * Returns the literal value of the fifth argument to qmlRegisterUncreatableType if it
- * can be resolved and null otherwise.
- */
- public String getReason();
+ /**
+ * Returns the literal value of the fifth argument to qmlRegisterUncreatableType if it
+ * can be resolved and null otherwise.
+ */
+ public String getReason();
}

Back to the top