[SRADA-779] Support search for dlog, calltrace table
authorjoon.c.baek <joon.c.baek@samsung.com>
Thu, 16 Jun 2016 08:45:21 +0000 (17:45 +0900)
committerdongkyu6 lee <dongkyu6.lee@samsung.com>
Mon, 20 Jun 2016 05:07:36 +0000 (14:07 +0900)
Support search dialog for dlog table,
calltrace table, UIHV properties table.

Change-Id: Icf16ec7ae923d7b5642a22d700b26f4a9025a9eb
Signed-off-by: joon.c.baek <joon.c.baek@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/hierarchy/properties/HierarchyPropertiesView.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/timeline/calltrace/CallTraceView.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/timeline/dlog/DlogView.java

index 646ed60..e135088 100644 (file)
@@ -64,6 +64,7 @@ public class HierarchyPropertiesView extends DAViewComposite {
                propertiesTable.setColumnSize(columnSizes);
                propertiesTable.setColumnVisibility(columnVisibility);
                propertiesTable.setTableToolTipEnable(false);
+               propertiesTable.setTableName(UIHierarchyPageLabels.UIHIERARCHY_PROPERTIES_VIEW_TITLE);
                contents.addControlListener(new TableColumnSizePackListener(propertiesTable, columnSizes));
        }
 
index dfe28b9..de4dc67 100644 (file)
@@ -76,6 +76,7 @@ public class CallTraceView extends DAViewComposite {
                
                nativeTable = new CallTraceTable(contents, SWT.NONE, SWT.MULTI
                                | SWT.BORDER | SWT.FULL_SELECTION);
+               nativeTable.setTableName(TimelinePageLabels.CALL_TRACE_VIEW_TITLE);
 
                webTable = new WebCallTraceTable(contents, SWT.NONE, SWT.MULTI
                                | SWT.BORDER | SWT.FULL_SELECTION);
index 3558a3f..1068154 100644 (file)
@@ -52,6 +52,7 @@ public class DlogView  extends DAViewComposite {
 \r
                DlogTable = new DlogTable(contents, SWT.NONE,\r
                                SWT.MULTI | SWT.BORDER | SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL);\r
+               DlogTable.setTableName(InformationViewLabels.DLOG_VIEW_TITLE);\r
 \r
                DlogTable.setTableToolTipEnable(false); }\r
 \r