summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XPatternField.idl
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-27 08:04:21 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-27 08:04:21 +0000
commitb0ba2a02b7d929bbc3e714c27cfd4628d4ddcc82 (patch)
tree207e3c783e5ebbec99785e20a262cff3c6a655aa /offapi/com/sun/star/awt/XPatternField.idl
parentf30b6c4845c6fa1e475383cadb02516f04e711cc (diff)
INTEGRATION: CWS tbe4 (1.8.66); FILE MERGED
2003/06/23 13:27:51 tbe 1.8.66.1: #56751# IDL review
Diffstat (limited to 'offapi/com/sun/star/awt/XPatternField.idl')
-rw-r--r--offapi/com/sun/star/awt/XPatternField.idl33
1 files changed, 12 insertions, 21 deletions
diff --git a/offapi/com/sun/star/awt/XPatternField.idl b/offapi/com/sun/star/awt/XPatternField.idl
index 7b9320a39..e6ee0e837 100644
--- a/offapi/com/sun/star/awt/XPatternField.idl
+++ b/offapi/com/sun/star/awt/XPatternField.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XPatternField.idl,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 13:52:51 $
+ * last change: $Author: vg $ $Date: 2003-06-27 09:03:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,14 +72,12 @@
//=============================================================================
-// DocMerge from xml: interface com::sun::star::awt::XPatternField
-/** makes it possible to access the value and formatting of this pattern field.
+/** gives access to the value and formatting of a pattern field.
*/
interface XPatternField: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XPatternField::setMasks
/** sets the pattern mask.
*/
[oneway] void setMasks( [in] string EditMask,
@@ -87,42 +85,35 @@ interface XPatternField: com::sun::star::uno::XInterface
//-------------------------------------------------------------------------
- // DocMerge from idl: method com::sun::star::awt::XPatternField::getMasks
- /** @returns
- the currently set pattern mask.
+ /** returns the currently set pattern mask.
*/
void getMasks( [out] string EditMask,
[out] string LiteralMask );
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XPatternField::setString
- /** sets the string value of this pattern field.
+ /** sets the string value of the pattern field.
*/
[oneway] void setString( [in] string Str );
//-------------------------------------------------------------------------
- // DocMerge from idl: method com::sun::star::awt::XPatternField::getString
- /** @returns
- the currently set string value of this pattern field.
+ /** returns the currently set string value of the pattern field.
*/
string getString();
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XPatternField::setStrictFormat
- /** determines whether the format is checked even during editing.
- */
+ /** determines if the format is checked during user input.
+ */
[oneway] void setStrictFormat( [in] boolean bStrict );
//-------------------------------------------------------------------------
- // DocMerge from idl: method com::sun::star::awt::XPatternField::isStrictFormat
- /** @returns
- whether the format is currently checked even during editing.
- */
- boolean isStrictFormat();
+ /** returns whether the format is currently checked during user input.
+ */
+ boolean isStrictFormat();
+
};
//=============================================================================