summaryrefslogtreecommitdiffstats
path: root/forms/qa/integration/forms/FormComponent.java
diff options
context:
space:
mode:
Diffstat (limited to 'forms/qa/integration/forms/FormComponent.java')
-rw-r--r--forms/qa/integration/forms/FormComponent.java114
1 files changed, 114 insertions, 0 deletions
diff --git a/forms/qa/integration/forms/FormComponent.java b/forms/qa/integration/forms/FormComponent.java
new file mode 100644
index 000000000..1861c084e
--- /dev/null
+++ b/forms/qa/integration/forms/FormComponent.java
@@ -0,0 +1,114 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+package integration.forms;
+
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.form.XFormsSupplier;
+import com.sun.star.container.XNameAccess;
+import com.sun.star.container.XIndexAccess;
+import com.sun.star.container.XChild;
+import com.sun.star.container.XNamed;
+import com.sun.star.drawing.XDrawPage;
+
+public class FormComponent
+{
+ private final Object m_component;
+ private final XNameAccess m_nameAccess;
+ private final XIndexAccess m_indexAccess;
+
+ /* ------------------------------------------------------------------ */
+ private FormComponent()
+ {
+ m_component = null;
+ m_nameAccess = null;
+ m_indexAccess = null;
+ }
+
+ /* ------------------------------------------------------------------ */
+ public FormComponent( XDrawPage drawPage )
+ {
+ XFormsSupplier supp = UnoRuntime.queryInterface(
+ XFormsSupplier.class, drawPage );
+ m_component = supp.getForms();
+
+ m_nameAccess = (XNameAccess)m_component;
+ m_indexAccess = UnoRuntime.queryInterface(
+ XIndexAccess.class, m_component );
+ UnoRuntime.queryInterface(
+ XChild.class, m_component );
+ UnoRuntime.queryInterface(
+ XNamed.class, m_component );
+ }
+
+ /* ------------------------------------------------------------------ */
+ private FormComponent( Object element )
+ {
+ m_component = element;
+ m_nameAccess = UnoRuntime.queryInterface(
+ XNameAccess.class, m_component );
+ m_indexAccess = UnoRuntime.queryInterface(
+ XIndexAccess.class, m_component );
+ UnoRuntime.queryInterface(
+ XChild.class, m_component );
+ UnoRuntime.queryInterface(
+ XNamed.class, m_component );
+ }
+
+ /* ------------------------------------------------------------------ */
+ /** Quick access to a given interface of the view
+ @param aInterfaceClass
+ the class of the interface which shall be returned
+ */
+ public <T> T query( Class<T> aInterfaceClass )
+ {
+ return UnoRuntime.queryInterface( aInterfaceClass, m_component );
+ }
+
+ /* ------------------------------------------------------------------ */
+ public FormComponent getByName( String name )
+ {
+ try
+ {
+ if ( m_nameAccess != null )
+ return new FormComponent( m_nameAccess.getByName( name ) );
+ }
+ catch( com.sun.star.uno.Exception e )
+ {
+ System.err.println( e );
+ e.printStackTrace( System.err );
+ }
+ return new FormComponent();
+ }
+
+ /* ------------------------------------------------------------------ */
+ public FormComponent getByIndex( int index )
+ {
+ try
+ {
+ if ( m_indexAccess != null )
+ return new FormComponent( m_indexAccess.getByIndex( index ) );
+ }
+ catch( com.sun.star.uno.Exception e )
+ {
+ System.err.println( e );
+ e.printStackTrace( System.err );
+ }
+ return new FormComponent();
+ }
+
+}