btf: fix order of modifiers in BtfEventPropertySource
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / viewers / events / columns / TmfEventTableColumn.java
CommitLineData
baafe54c
AM
1/*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.viewers.events.columns;
baafe54c
AM
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16import org.eclipse.jdt.annotation.Nullable;
2a28075c 17import org.eclipse.tracecompass.common.core.NonNullUtils;
2bdf0193 18import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
9447c7ee 19import org.eclipse.tracecompass.tmf.core.event.aspect.ITmfEventAspect;
baafe54c
AM
20
21/**
22 * A column in the
2bdf0193 23 * {@link org.eclipse.tracecompass.tmf.ui.viewers.events.TmfEventsTable}. In
baafe54c
AM
24 * addition to ones provided by default, trace types can extend this class to
25 * create additional columns specific to their events.
26 *
27 * Those additional columns can then be passed to the constructor
2bdf0193 28 * {@link org.eclipse.tracecompass.tmf.ui.viewers.events.TmfEventsTable#TmfEventsTable(org.eclipse.swt.widgets.Composite, int, java.util.Collection)}
baafe54c
AM
29 *
30 * @author Alexandre Montplaisir
9447c7ee
AM
31 * @noextend This class should not be extended directly. You should instead
32 * implement an {@link ITmfEventAspect}.
baafe54c
AM
33 * @since 3.1
34 */
35@NonNullByDefault
9447c7ee 36public class TmfEventTableColumn {
baafe54c
AM
37
38 // ------------------------------------------------------------------------
39 // Fields
40 // ------------------------------------------------------------------------
41
9447c7ee 42 private final ITmfEventAspect fAspect;
baafe54c
AM
43
44 // ------------------------------------------------------------------------
45 // Constructors
46 // ------------------------------------------------------------------------
47
48 /**
9447c7ee 49 * Constructor
baafe54c 50 *
9447c7ee
AM
51 * @param aspect
52 * The {@link ITmfEventAspect} to be used to populate this
53 * column.
baafe54c 54 */
9447c7ee
AM
55 public TmfEventTableColumn(ITmfEventAspect aspect) {
56 fAspect = aspect;
baafe54c
AM
57 }
58
59 // ------------------------------------------------------------------------
60 // Getters
61 // ------------------------------------------------------------------------
62
63 /**
64 * Get this column's header name, a.k.a. title
65 *
66 * @return The column's title
67 */
68 public String getHeaderName() {
9447c7ee 69 return fAspect.getName();
baafe54c
AM
70 }
71
72 /**
73 * Get the tooltip text for the column header
74 *
75 * @return The header's tooltip
76 */
77 public @Nullable String getHeaderTooltip() {
9447c7ee 78 return fAspect.getHelpText();
baafe54c
AM
79 }
80
baafe54c
AM
81 /**
82 * Get the string that should be displayed in this column's cell for a given
83 * trace event. Basically, this defines "what to print in this column for
84 * this event".
baafe54c
AM
85 *
86 * @param event
87 * The trace event whose element we want to display
88 * @return The string to display in the column for this event
89 */
9447c7ee 90 public String getItemString(ITmfEvent event) {
2a28075c 91 return NonNullUtils.nullToEmptyString(fAspect.resolve(event));
9447c7ee 92 }
baafe54c
AM
93
94 /**
c409f16b 95 * Get the event aspect assigned to this column
baafe54c 96 *
c409f16b 97 * @return The event aspect
baafe54c 98 */
c409f16b
AM
99 public ITmfEventAspect getEventAspect() {
100 return fAspect;
9447c7ee
AM
101 }
102
103 // ------------------------------------------------------------------------
104 // hashCode/equals (so that equivalent columns can be merged together)
105 // ------------------------------------------------------------------------
106
107 @Override
108 public int hashCode() {
109 final int prime = 31;
110 int result = 1;
111 result = prime * result + fAspect.hashCode();
112 return result;
113 }
114
115 @Override
116 public boolean equals(@Nullable Object obj) {
117 if (this == obj) {
118 return true;
119 }
120 if (obj == null) {
121 return false;
122 }
123 if (!(obj instanceof TmfEventTableColumn)) {
124 return false;
125 }
126 TmfEventTableColumn other = (TmfEventTableColumn) obj;
127 if (!fAspect.equals(other.fAspect)) {
128 /* Aspects can also define how they can be "equal" to one another */
129 return false;
130 }
131 return true;
132 }
baafe54c 133}
This page took 0.043113 seconds and 5 git commands to generate.