Skip to content
Snippets Groups Projects
Commit 4cd64d7b authored by Simon Barner's avatar Simon Barner
Browse files

YELLOW

- Add missing "private" declaration to several field
- While here, convert protected field into private one
refs 2490
parent 9ac18bcc
Branches
Tags
No related merge requests found
...@@ -79,15 +79,14 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt ...@@ -79,15 +79,14 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt
* @author eder, diewald, barner * @author eder, diewald, barner
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating YELLOW Hash: 205EF0E23C3CC15A06716C7C85725416 * @ConQAT.Rating YELLOW Hash: B8768F20E831C6F1435128A3609D0A8D
*/ */
public class GenericAnnotationView extends AnnotationViewPartBase { public class GenericAnnotationView extends AnnotationViewPartBase {
/** Root composite of {@link GenericAnnotationView}. */ /** Root composite of {@link GenericAnnotationView}. */
// TODO (FH): why package private and not protected private Composite rootComposite;
Composite rootComposite;
/** The table viewer used to implement the view. */ /** The table viewer used to implement the view. */
protected TableViewer tableViewer; private TableViewer tableViewer;
/** Row and column filter for annotations. */ /** Row and column filter for annotations. */
private AnnotationFilter annotationFilter; private AnnotationFilter annotationFilter;
...@@ -104,16 +103,16 @@ public class GenericAnnotationView extends AnnotationViewPartBase { ...@@ -104,16 +103,16 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
private Collection<AnnotationEntry> lastAnnotationEntries; private Collection<AnnotationEntry> lastAnnotationEntries;
/** Number of fixed columns shown for every model element (e.g., name, comment). */ /** Number of fixed columns shown for every model element (e.g., name, comment). */
int fixedColumnCount; private int fixedColumnCount;
/** /**
* Map used to preserve column width of annotation columns during update of the view (fixed * Map used to preserve column width of annotation columns during update of the view (fixed
* columns are not deleted hence caching the width is not necessary). * columns are not deleted hence caching the width is not necessary).
*/ */
Map<String, Integer> columnWidthCache; private Map<String, Integer> columnWidthCache;
/** Default width of columns. */ /** Default width of columns. */
static final int COLUMN_DEFAULT_WIDTH = 125; private static final int COLUMN_DEFAULT_WIDTH = 125;
/** Default height of rows. */ /** Default height of rows. */
private int defaultRowHeight; private int defaultRowHeight;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment