Setting : remove .csv file extension 57/27857/1
authorheeyoung <heeyoung1008.hwang@samsung.com>
Sat, 20 Sep 2014 06:27:15 +0000 (15:27 +0900)
committerheeyoung <heeyoung1008.hwang@samsung.com>
Sat, 20 Sep 2014 06:27:15 +0000 (15:27 +0900)
Change-Id: Id4321761202e5a538836ad9f40dc8dc63d9326da
Signed-off-by: heeyoung <heeyoung1008.hwang@samsung.com>
org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/feature [moved from org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/feature.csv with 96% similarity]
org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/setting [moved from org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/setting.csv with 96% similarity]
org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/template [moved from org.tizen.dynamicanalyzer.workbench/dynamic-analyzer/config/template.csv with 99% similarity]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/setting/FeatureDialogFeaturesTable.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/setting/SettingDataManager.java

@@ -19,4 +19,4 @@ mobile-2.3|Screenshot|0||Description : Screenshot|Timeline|Screenshot||||128|1
 mobile-2.3|On scene transition|2|Screenshot|Description : On scene transition|||||1||
 mobile-2.3|periodically|2|Screenshot|Description : periodically|||1|100|10||
 mobile-2.3|UI event|0||Description : UI event|Timeline|UI event||||256|1
-mobile-2.3|Recording|0||Description : Recording||||||512|1
+mobile-2.3|Recording|0||Description : Recording||||||512|1
\ No newline at end of file
@@ -5,4 +5,4 @@ Show Initial|false
 Auto Stop|false
 Selected Template|mobile-2.3|Bottleneck
 Selected FeatureList|mobile-2.3|System|System CPU|System processes|System information sampling periodic:1000|Function profiling|Function sampling|Function profiling sampling periodic:10
-Available Chart List|mobile-2.3|CPU|CPU core|CPU frequency|Heap allocation|Process Size|Memory|Screenshot|UI event|Disk IO|Network IO|Device|Energy
+Available Chart List|mobile-2.3|CPU|CPU core|CPU frequency|Heap allocation|Process Size|Memory|Screenshot|UI event|Disk IO|Network IO|Device|Energy
\ No newline at end of file
@@ -7,4 +7,4 @@ mobile-2.3|Wait Status|This template shows various information that cause the pr
 mobile-2.3|Network|This template shows the TCP/UDP network activity of the glibc socket. The Network chart shows each session information. And you can check which API has been called in each session and can see the transmitted data, too.|System|System network|System information sampling periodic:1000|Network analysis
 mobile-2.3|OpenGL|This template shows a lot of detailed information of the openGL layer. It shows the FPS, render state, openGL calls, statistics and redundant usage of the API. These help you to optimize the performance of your application. We are supporting OpenGL ES 2.0 and EvasGL, now.|System|System CPU|System processes|System information sampling periodic:1000|Function profiling|Screenshot|periodically:10|OpenGL ES analysis
 mobile-2.3|Energy|This template inform you of power consumption of target device. you can see this information from Energy chart in Timeline page. Energy chart shows usage of Flash memory, CPU, LCD.|System|System CPU|System processes|System memory|System energy|System information sampling periodic:1000
-mobile-2.3|Custom|This template can be configured by selecting the desired features. If you change the feature in the other template will change custom template.
+mobile-2.3|Custom|This template can be configured by selecting the desired features. If you change the feature in the other template will change custom template.
\ No newline at end of file
index 19e8d20..da6ab8c 100644 (file)
@@ -269,7 +269,6 @@ public class FeatureDialogFeaturesTable extends DATreeComposite {
                        case SWT.MouseDoubleClick:
                                break;
                        case SWT.MouseHover:            
-                               table.redraw();
                                break;
                        case SWT.MouseUp:
                                break;
index 49f5b6f..dfc05c9 100644 (file)
@@ -58,9 +58,9 @@ public class SettingDataManager {
 
        public static final String READ_CSV_SEPARATOR = "\\" + CommonConstants.CMD_SPLIT;
        public static final String WRITE_CSV_SEPARATOR = CommonConstants.CMD_SPLIT;
-       public static final String SETTING_FILE_NAME = "setting.csv";
-       public static final String FEATUER_FILE_NAME = "feature.csv";
-       public static final String TEMPLATE_FILE_NAME = "template.csv";
+       public static final String SETTING_FILE_NAME = "setting";
+       public static final String FEATUER_FILE_NAME = "feature";
+       public static final String TEMPLATE_FILE_NAME = "template";
        
        // key name in setting file
        public static final String KEY_TARGET_LIST = "Target List";