summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report/DBColumn.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:36:04 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commitda677dfd59c2b551f3335ee0a5d5dfb33f9869c5 (patch)
tree9aa09066c95935117bf405b119ed9f89f448a54d /wizards/com/sun/star/wizards/report/DBColumn.java
parent14d1a11ec4a7ed0deeac522403248536e8d23f57 (diff)
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'wizards/com/sun/star/wizards/report/DBColumn.java')
-rw-r--r--wizards/com/sun/star/wizards/report/DBColumn.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/wizards/com/sun/star/wizards/report/DBColumn.java b/wizards/com/sun/star/wizards/report/DBColumn.java
index 4c5884cf3f00..9da1ed770379 100644
--- a/wizards/com/sun/star/wizards/report/DBColumn.java
+++ b/wizards/com/sun/star/wizards/report/DBColumn.java
@@ -44,19 +44,19 @@ import com.sun.star.wizards.text.TextFieldHandler;
public class DBColumn
{
- public XCell xValCell;
- public XTextRange xValTextCell;
- public XTextCursor xValCellCursor;
+ private XCell xValCell;
+ private XTextRange xValTextCell;
+ private XTextCursor xValCellCursor;
public XNumberFormats xValCellNumberFormats;
public XCell xNameCell;
- public XTextRange xNameTextCell;
- public boolean bAlignLeft;
+ private XTextRange xNameTextCell;
+ private boolean bAlignLeft;
public Object DefaultValue;
- public String CharFontName;
+ private String CharFontName;
public int FormatKey;
- public PropertyState PropertyState;
+ private PropertyState PropertyState;
public int ValColumn = 1;
- public int ValRow = 0;
+ private int ValRow = 0;
public FieldColumn CurDBField;
private XTextTable xTextTable;
private XTableColumns xTableColumns;
@@ -64,9 +64,9 @@ public class DBColumn
public XNamed xTableName;
private boolean bIsGroupColumn;
TextDocument oTextDocument;
- RecordParser CurDBMetaData;
- RecordTable CurRecordTable;
- TextTableHandler oTextTableHandler;
+ private RecordParser CurDBMetaData;
+ private RecordTable CurRecordTable;
+ private TextTableHandler oTextTableHandler;
public DBColumn(TextTableHandler _oTextTableHandler, RecordParser _CurDBMetaData, int i)
{