summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java')
-rw-r--r--qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java b/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
index badab75a22f3..e8cd10a36c1e 100644
--- a/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
+++ b/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
@@ -51,21 +51,21 @@ public class _XUpdateBroadcaster extends MultiMethodTest {
* Interface for relation. Updating, committing and checking
* if data was committed is object dependent behaviour.
*/
- public static interface UpdateChecker {
+ public interface UpdateChecker {
/**
* Method must make some data update in the object tested.
*/
- public void update() throws com.sun.star.uno.Exception ;
+ void update() throws com.sun.star.uno.Exception ;
/**
* Method must commit data change made by method <code>update</code>.
*/
- public void commit() throws com.sun.star.uno.Exception ;
+ void commit() throws com.sun.star.uno.Exception ;
/**
* Checks if the data committed by <code>commit</code> method
* became permanent in data source.
* @return <code>true</code> if data was committed.
*/
- public boolean wasCommited() throws com.sun.star.uno.Exception ;
+ boolean wasCommited() throws com.sun.star.uno.Exception ;
}
/**