summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/ControlDsc.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/ControlDsc.java')
-rw-r--r--qadevOOo/runner/util/ControlDsc.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/qadevOOo/runner/util/ControlDsc.java b/qadevOOo/runner/util/ControlDsc.java
index 36fbd1874791..8a99b70645b8 100644
--- a/qadevOOo/runner/util/ControlDsc.java
+++ b/qadevOOo/runner/util/ControlDsc.java
@@ -36,13 +36,16 @@ public class ControlDsc extends InstDescr {
service="com.sun.star.form.component."+kind;
initControl();
}
+ @Override
public String getName() {
return name;
}
+ @Override
public String getIfcName() {
return ifcName;
}
+ @Override
public String getService() {
return service;
}
@@ -54,6 +57,7 @@ public class ControlDsc extends InstDescr {
catch( ClassNotFoundException cnfE ) {
}
}
+ @Override
public XInterface createInstance( XMultiServiceFactory docMSF ) {
Object SrvObj = null;