[Esbox-commits] r1645 - in branches/work_Fabricio: org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb org.maemo.esbox.help/html/images org.maemo.esbox.help/html/images/debian org.maemo.esbox.help/html/images/externalize org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch
fabricioepa at garage.maemo.org
fabricioepa at garage.maemo.org
Tue May 26 17:57:42 EEST 2009
Author: fabricioepa
Date: 2009-05-26 17:57:42 +0300 (Tue, 26 May 2009)
New Revision: 1645
Added:
branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDILocalLaunchConfigurationTabGroup.java
branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDIRemoteLaunchConfigurationTabGroup.java
branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBLocalLaunchConfigurationTabGroup.java
branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBRemoteLaunchConfigurationTabGroup.java
branches/work_Fabricio/org.maemo.esbox.help/html/images/debian/dialog-debian-content-reader.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/debian/dialog-debian-content-viewer.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-menu.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-select.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-translate.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-view.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/never_translate.gif
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/skip.gif
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/translate.gif
branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxOProfileRemoteLaunchConfigurationTabGroup.java
branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxValgrindLocalLaunchConfigurationTabGroup.java
Removed:
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-menu.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-select.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-translate.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-view.png
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/never_translate.gif
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/skip.gif
branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/translate.gif
Log:
Merging with /trunk
Copied: branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDILocalLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDILocalLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDILocalLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDILocalLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.cpp.launch.cdi.gdb;
+
+import org.maemo.mica.cpp.launch.cdi.gdb.launch.AbstractCDILocalLaunchConfigurationTabGroup;
+import org.maemo.mica.cpp.launch.cdi.gdb.launch.AbstractCDILocalLaunchShortcut;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxCDILocalLaunchConfigurationTabGroup extends
+ AbstractCDILocalLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.common.launch.AbstractMicaLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractCDILocalLaunchShortcut getLaunchShortcut() {
+ return new ESboxCDILocalLaunchShortcut();
+ }
+
+}
Copied: branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDIRemoteLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDIRemoteLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDIRemoteLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.cpp.launch.cdi.gdb/src/org/maemo/esbox/internal/cpp/launch/cdi/gdb/ESboxCDIRemoteLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.cpp.launch.cdi.gdb;
+
+import org.maemo.mica.cpp.launch.cdi.gdb.launch.AbstractCDIRemoteLaunchConfigurationTabGroup;
+import org.maemo.mica.cpp.launch.cdi.gdb.launch.AbstractCDIRemoteLaunchShortcut;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxCDIRemoteLaunchConfigurationTabGroup extends
+ AbstractCDIRemoteLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.common.launch.AbstractMicaLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractCDIRemoteLaunchShortcut getLaunchShortcut() {
+ return new ESboxCDIRemoteLaunchShortcut();
+ }
+
+}
Copied: branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBLocalLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBLocalLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBLocalLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBLocalLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.cpp.launch.dsf.gdb;
+
+import org.maemo.mica.cpp.launch.dsf.gdb.launch.AbstractDSFGDBLocalLaunchConfigurationTabGroup;
+import org.maemo.mica.cpp.launch.dsf.gdb.launch.AbstractDSFGDBLocalLaunchShortcut;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxDSFGDBLocalLaunchConfigurationTabGroup extends
+ AbstractDSFGDBLocalLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.cpp.launch.dsf.gdb.launch.AbstractDSFGDBLocalLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractDSFGDBLocalLaunchShortcut getLaunchShortcut() {
+ return new ESboxDSFLocalLaunchShortcut();
+ }
+
+}
Copied: branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBRemoteLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBRemoteLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBRemoteLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.cpp.launch.dsf.gdb/src/org/maemo/esbox/internal/cpp/launch/dsf/gdb/ESboxDSFGDBRemoteLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.cpp.launch.dsf.gdb;
+
+import org.maemo.mica.cpp.launch.dsf.gdb.launch.AbstractDSFGDBRemoteLaunchConfigurationTabGroup;
+import org.maemo.mica.cpp.launch.dsf.gdb.launch.AbstractDSFGDBRemoteLaunchShortcut;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxDSFGDBRemoteLaunchConfigurationTabGroup extends
+ AbstractDSFGDBRemoteLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.cpp.launch.AbstractCppLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractDSFGDBRemoteLaunchShortcut getLaunchShortcut() {
+ return new ESboxDSFRemoteLaunchShortcut();
+ }
+
+
+}
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/debian/dialog-debian-content-reader.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/debian/dialog-debian-content-reader.png)
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/debian/dialog-debian-content-viewer.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/debian/dialog-debian-content-viewer.png)
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-menu.png
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-menu.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/es-menu.png)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-select.png
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-select.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/es-select.png)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-translate.png
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-translate.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/es-translate.png)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-view.png
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/es-view.png (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/es-view.png)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/never_translate.gif
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/never_translate.gif (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/never_translate.gif)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/skip.gif
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/skip.gif (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/skip.gif)
===================================================================
(Binary files differ)
Deleted: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/translate.gif
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.help/html/images/externalize/translate.gif (from rev 1642, trunk/org.maemo.esbox.help/html/images/externalize/translate.gif)
===================================================================
(Binary files differ)
Copied: branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxOProfileRemoteLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxOProfileRemoteLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxOProfileRemoteLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxOProfileRemoteLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.analysis.launch;
+
+import org.maemo.mica.cpp.launch.AbstractCppLaunchShortcut;
+import org.maemo.mica.cpp.launch.analysis.oprofile.AbstractOProfileRemoteLaunchConfigurationTabGroup;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxOProfileRemoteLaunchConfigurationTabGroup extends
+ AbstractOProfileRemoteLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.cpp.launch.AbstractCppLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractCppLaunchShortcut getLaunchShortcut() {
+ return new ESboxOProfileRemoteLaunchShortcut();
+ }
+
+}
Copied: branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxValgrindLocalLaunchConfigurationTabGroup.java (from rev 1642, trunk/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxValgrindLocalLaunchConfigurationTabGroup.java)
===================================================================
--- branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxValgrindLocalLaunchConfigurationTabGroup.java (rev 0)
+++ branches/work_Fabricio/org.maemo.esbox.launch.analysis/src/org/maemo/esbox/internal/analysis/launch/ESboxValgrindLocalLaunchConfigurationTabGroup.java 2009-05-26 14:57:42 UTC (rev 1645)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Nokia Corporation
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ed Swartz (Nokia) - initial API and implementation
+ *******************************************************************************/
+
+package org.maemo.esbox.internal.analysis.launch;
+
+import org.maemo.mica.cpp.launch.AbstractCppLaunchShortcut;
+import org.maemo.mica.cpp.launch.analysis.valgrind.AbstractValgrindLocalLaunchConfigurationTabGroup;
+
+/**
+ * @author eswartz
+ *
+ */
+public class ESboxValgrindLocalLaunchConfigurationTabGroup extends
+ AbstractValgrindLocalLaunchConfigurationTabGroup {
+
+ /* (non-Javadoc)
+ * @see org.maemo.mica.cpp.launch.AbstractCppLaunchConfigurationTabGroup#getLaunchShortcut()
+ */
+ @Override
+ protected AbstractCppLaunchShortcut getLaunchShortcut() {
+ return new ESboxValgrindLocalLaunchShortcut();
+ }
+
+}
More information about the Esbox-commits
mailing list