diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-12 09:30:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-15 08:45:19 +0000 |
commit | 0c18bedb7328493040c1a20822b345e624d6041f (patch) | |
tree | 2f7fb01b21a63ceef52f05035bc047173ea46785 /odk/examples/DevelopersGuide | |
parent | 8b85838611ed448ef18a9e4982849bbd702981aa (diff) |
java: 'final static' to 'static final'
this is the canonical order, and it makes the code easier to read
Change-Id: I272e7f1e140296e582702b6dbf77a03eefb65470
Reviewed-on: https://gerrit.libreoffice.org/16242
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'odk/examples/DevelopersGuide')
3 files changed, 9 insertions, 9 deletions
diff --git a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java index 27c578ba4270..90ce8a47b9bd 100644 --- a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java +++ b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java @@ -55,14 +55,14 @@ public class UnoDialogSample2 extends UnoDialogSample { // define some constants used to set positions and sizes // of controls. For further information see // http://ui.openoffice.org/knowledge/DialogSpecificationandGuidelines.odt - final static int nFixedTextHeight = 8; - final static int nControlMargin = 6; - final static int nDialogWidth = 250; - final static int nDialogHeight = 140; + static final int nFixedTextHeight = 8; + static final int nControlMargin = 6; + static final int nDialogWidth = 250; + static final int nDialogHeight = 140; // the default roadmap width == 80 MAPs - final static int nRoadmapWidth = 80; - final static int nButtonHeight = 14; - final static int nButtonWidth = 50; + static final int nRoadmapWidth = 80; + static final int nButtonHeight = 14; + static final int nButtonWidth = 50; public UnoDialogSample2(XComponentContext _xContext, XMultiComponentFactory _xMCF, Object _oUnoObject) { diff --git a/odk/examples/DevelopersGuide/UCB/ChildrenRetriever.java b/odk/examples/DevelopersGuide/UCB/ChildrenRetriever.java index 9764718a1751..42f0689f5320 100644 --- a/odk/examples/DevelopersGuide/UCB/ChildrenRetriever.java +++ b/odk/examples/DevelopersGuide/UCB/ChildrenRetriever.java @@ -123,7 +123,7 @@ public class ChildrenRetriever { // Fill argument structure... OpenCommandArgument2 arg = new OpenCommandArgument2(); arg.Mode = OpenMode.ALL; // FOLDER, DOCUMENTS -> simple filter - arg.Priority = 32768; // Final static for 32768 + arg.Priority = 32768; // static final for 32768 arg.Properties = props; XDynamicResultSet set; diff --git a/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java b/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java index 95fb3e98413a..f25e6cd0fd56 100644 --- a/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java +++ b/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java @@ -87,7 +87,7 @@ public class DataStreamRetriever { // Fill argument structure... OpenCommandArgument2 arg = new OpenCommandArgument2(); arg.Mode = OpenMode.DOCUMENT; - arg.Priority = 32768; // Final static for 32768 + arg.Priority = 32768; // static final for 32768 // Create data sink implementation object. XActiveDataSink dataSink = new MyActiveDataSink(); |