summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XFormField.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/text/XFormField.idl')
-rw-r--r--offapi/com/sun/star/text/XFormField.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/XFormField.idl b/offapi/com/sun/star/text/XFormField.idl
new file mode 100644
index 000000000000..53555728ba40
--- /dev/null
+++ b/offapi/com/sun/star/text/XFormField.idl
@@ -0,0 +1,20 @@
+#ifndef __com_sun_star_text_XFormField_idl__
+#define __com_sun_star_text_XFormField_idl__
+
+#include <com/sun/star/uno/XInterface.idl>
+#include <com/sun/star/container/XNameContainer.idl>
+
+module com { module sun { module star { module text {
+
+ /** @deprecated
+ */
+ interface XFormField : com::sun::star::uno::XInterface
+ {
+ string getFieldType();
+ void setFieldType([in] string fieldType);
+ com::sun::star::container::XNameContainer getParameters();
+ };
+
+}; }; }; };
+
+#endif