summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2003-09-08 09:07:36 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2003-09-08 09:07:36 +0000
commitdbcc24187ed22cc58ce86c9c7ac43658193fbf58 (patch)
tree35b5f88f007970784c59128658e87239c787cc16 /qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java
parent931295d4b92e689f8d73ce26e76bfb9f5650bc6d (diff)
INTEGRATION: CWS qadev11 (1.1.28); FILE MERGED
2003/09/03 13:36:14 sw 1.1.28.1: #112049#
Diffstat (limited to 'qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java17
1 files changed, 14 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java b/qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java
index 7731d2f2f144..181477968542 100644
--- a/qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java
+++ b/qadevOOo/tests/java/ifc/awt/_UnoControlDialogModel.java
@@ -2,9 +2,9 @@
*
* $RCSfile: _UnoControlDialogModel.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change:$Date: 2003-01-27 18:07:46 $
+ * last change:$Date: 2003-09-08 10:07:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,7 +62,6 @@
package ifc.awt;
import lib.MultiPropertyTest;
-import lib.MultiPropertyTest$PropertyTester;
import util.utils;
/**
@@ -106,5 +105,17 @@ public class _UnoControlDialogModel extends MultiPropertyTest {
}
}) ;
}
+
+ /**
+ * This property can be VOID, and in case if it is so new
+ * value must defined.
+ */
+ public void _TextLineColor() {
+ testProperty("TextLineColor", new PropertyTester() {
+ protected Object getNewValue(String p, Object old) {
+ return utils.isVoid(old) ? new Integer(4321) : null ;
+ }
+ }) ;
+ }
}