summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 13:30:49 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-06-11 09:34:00 +0000
commitefd4bfa818e262d7dc219ac3ceb85526fedc732c (patch)
tree932b54f6c3689d3c087f4f3911f66695c8817229 /forms
parenta6f4fde8baf3eeb36820d18ffad84192e995145f (diff)
java:regulatize the order of 'final' and public/private
Make the order be 'public static' or 'private static' Just makes the code nicer to read. Change-Id: I182424bda45a2d68642e5d04c6091d268ace1fe2 Reviewed-on: https://gerrit.libreoffice.org/16202 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/qa/integration/forms/dbfTools.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/qa/integration/forms/dbfTools.java b/forms/qa/integration/forms/dbfTools.java
index 0d9a61e0881a..fe61c6ef4814 100644
--- a/forms/qa/integration/forms/dbfTools.java
+++ b/forms/qa/integration/forms/dbfTools.java
@@ -30,7 +30,7 @@ class dbfTools
/* ------------------------------------------------------------------ */
/** disposes the component given
*/
- static public void disposeComponent( Object xComp ) throws java.lang.RuntimeException
+ public static void disposeComponent( Object xComp ) throws java.lang.RuntimeException
{
XComponent xComponent = queryComponent( xComp );
if ( null != xComponent )
@@ -40,7 +40,7 @@ class dbfTools
/* ------------------------------------------------------------------ */
/** queries an object for the XPropertySet interface
*/
- static public XPropertySet queryPropertySet( Object aComp )
+ public static XPropertySet queryPropertySet( Object aComp )
{
return UnoRuntime.queryInterface( XPropertySet.class, aComp );
}
@@ -48,7 +48,7 @@ class dbfTools
/* ------------------------------------------------------------------ */
/** queries an object for the XIndexContainer interface
*/
- static public XIndexContainer queryIndexContainer( Object aComp )
+ public static XIndexContainer queryIndexContainer( Object aComp )
{
return UnoRuntime.queryInterface( XIndexContainer.class, aComp );
}
@@ -56,7 +56,7 @@ class dbfTools
/* ------------------------------------------------------------------ */
/** queries an object for the XComponent interface
*/
- static public XComponent queryComponent( Object aComp )
+ public static XComponent queryComponent( Object aComp )
{
return UnoRuntime.queryInterface( XComponent.class, aComp );
}