Skip to content
Snippets Groups Projects
Commit 693ff6fc authored by Raphael GIRARDOT's avatar Raphael GIRARDOT
Browse files

TangoDeviceExplorer no more excluded from compilation

parent b5073b3e
No related branches found
No related tags found
No related merge requests found
......@@ -148,10 +148,10 @@ public class TangoDeviceExplorer extends AbstractDeviceExplorerPanel {
deviceStatePanel.setCommandTransferHandler(treeCommandTransferHandler);
dataItemViewer.transferHandlerForScalarViewer(new TreeItemTransferHandler(controller, deviceTreePanel));
dataItemViewer.transferHandlerForMatrixViewer(new TreeItemTransferHandler(controller, DataType.IMAGE,
AxisType.IMAGE, deviceTreePanel));
dataItemViewer.transferHandlerForSpectrumViewer(new TreeItemTransferHandler(controller, DataType.SPECTRUM,
AxisType.Y1, deviceTreePanel));
dataItemViewer.transferHandlerForMatrixViewer(
new TreeItemTransferHandler(controller, DataType.IMAGE, AxisType.IMAGE, deviceTreePanel));
dataItemViewer.transferHandlerForSpectrumViewer(
new TreeItemTransferHandler(controller, DataType.SPECTRUM, AxisType.Y1, deviceTreePanel));
createMenuBar();
......@@ -661,12 +661,10 @@ public class TangoDeviceExplorer extends AbstractDeviceExplorerPanel {
System.out.println("[device_name]\t\t\t\tLaunch devicePanel on the specified device");
System.out.println(ARGS_CONFIG_FILE + " [config_file_path]\t"
+ "\t\t\t\tLauch device panel with configuration (docking and attributes).");
System.out
.println(ARGS_SPECIFICCONFIG_FILE
+ " [config_file_path]\t"
System.out.println(ARGS_SPECIFICCONFIG_FILE + " [config_file_path]\t"
+ "Launch a specific application according to the class of the device see $LIVE_ROOT/conf/devicepanel/device_panel_config.txt");
System.out.println(ARGS_OPEN_ALL
+ "\t\t\t\tDisplay all the attribute, caution this function may take a while");
System.out.println(
ARGS_OPEN_ALL + "\t\t\t\tDisplay all the attribute, caution this function may take a while");
System.out.println(ARGS_OPEN_ALL_SCALAR
+ "\t\t\t\tDisplay all scalar attribute, caution this function may take a while");
System.out.println(ARGS_OPEN_ALL_IMAGE
......@@ -741,7 +739,6 @@ public class TangoDeviceExplorer extends AbstractDeviceExplorerPanel {
} else if (arg.equals(ARGS_HIDE_STATUS)) {
indexHideStatus = i;
hideStatus = true;
} else if (arg.equals(ARGS_CONFIG_FILE)) {
if (i + 1 < args.length) {
String deviceNameWithXMLFile = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment