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
No related branches found
No related tags found
No related merge requests found
......@@ -79,15 +79,14 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt
* @author eder, diewald, barner
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 205EF0E23C3CC15A06716C7C85725416
* @ConQAT.Rating YELLOW Hash: B8768F20E831C6F1435128A3609D0A8D
*/
public class GenericAnnotationView extends AnnotationViewPartBase {
/** Root composite of {@link GenericAnnotationView}. */
// TODO (FH): why package private and not protected
Composite rootComposite;
private Composite rootComposite;
/** The table viewer used to implement the view. */
protected TableViewer tableViewer;
private TableViewer tableViewer;
/** Row and column filter for annotations. */
private AnnotationFilter annotationFilter;
......@@ -104,16 +103,16 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
private Collection<AnnotationEntry> lastAnnotationEntries;
/** 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
* columns are not deleted hence caching the width is not necessary).
*/
Map<String, Integer> columnWidthCache;
private Map<String, Integer> columnWidthCache;
/** Default width of columns. */
static final int COLUMN_DEFAULT_WIDTH = 125;
private static final int COLUMN_DEFAULT_WIDTH = 125;
/** Default height of rows. */
private int defaultRowHeight;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment