Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2012-03-13 18:02:58 +0000
committerRoland Grunberg2012-03-14 16:38:37 +0000
commitf2ae5915386035466689bce8e7d27861708e3daa (patch)
treeecb5aecc185b8dbc98f3ede0c5771388a2a3de3d /systemtap/org.eclipse.linuxtools.callgraph.launch.tests
parent4366feabe572a461b23acbffe7c6f6c16b09bfd0 (diff)
downloadorg.eclipse.linuxtools-f2ae5915386035466689bce8e7d27861708e3daa.tar.gz
org.eclipse.linuxtools-f2ae5915386035466689bce8e7d27861708e3daa.tar.xz
org.eclipse.linuxtools-f2ae5915386035466689bce8e7d27861708e3daa.zip
Internalize all of Callgraph API.
We internalize all packages of the Callgraph API. All IDs that refer to a specific class or package are represented without the internal keyword in its representation.
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.callgraph.launch.tests')
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/.project2
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/META-INF/MANIFEST.MF6
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AbstractStapTest.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AllTests.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/ConfigurationTest.java6
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/LaunchShortcutsTest.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandGeneratorTest.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandLineTest.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapErrorHandlerTest.java2
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapTabTest.java4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.launch.tests/test.xml4
11 files changed, 22 insertions, 22 deletions
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/.project b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/.project
index 4f1d68414d..e789cfe303 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/.project
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/.project
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>org.eclipse.linuxtools.callgraph.launch.tests</name>
+ <name>org.eclipse.linuxtools.internal.callgraph.launch.tests</name>
<comment></comment>
<projects>
</projects>
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/META-INF/MANIFEST.MF b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/META-INF/MANIFEST.MF
index 6f3118be94..969b60a17c 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/META-INF/MANIFEST.MF
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/META-INF/MANIFEST.MF
@@ -15,8 +15,8 @@ Import-Package: org.eclipse.cdt.core.model,
org.eclipse.cdt.launch,
org.eclipse.core.resources,
org.eclipse.debug.core,
- org.eclipse.linuxtools.callgraph.core,
+ org.eclipse.linuxtools.internal.callgraph.core,
+ org.eclipse.linuxtools.internal.callgraph.launch,
org.eclipse.linuxtools.profiling.launch,
- org.eclipse.linuxtools.profiling.tests,
- org.eclipse.linuxtools.callgraph.launch
+ org.eclipse.linuxtools.profiling.tests
Bundle-Vendor: Eclipse
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AbstractStapTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AbstractStapTest.java
index 8b281ef977..f55b5235ac 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AbstractStapTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AbstractStapTest.java
@@ -20,9 +20,9 @@ import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchConfigurationType;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
-import org.eclipse.linuxtools.callgraph.core.PluginConstants;
import org.eclipse.linuxtools.profiling.tests.AbstractTest;
-import org.eclipse.linuxtools.callgraph.launch.SystemTapOptionsTab;
+import org.eclipse.linuxtools.internal.callgraph.core.PluginConstants;
+import org.eclipse.linuxtools.internal.callgraph.launch.SystemTapOptionsTab;
import org.osgi.framework.Bundle;
public abstract class AbstractStapTest extends AbstractTest {
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AllTests.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AllTests.java
index d04610c2a7..3f6639c283 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AllTests.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/AllTests.java
@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.linuxtools.callgraph.launch.tests;
-import org.eclipse.linuxtools.callgraph.core.SystemTapUIErrorMessages;
+import org.eclipse.linuxtools.internal.callgraph.core.SystemTapUIErrorMessages;
import junit.framework.Test;
import junit.framework.TestSuite;
@@ -22,7 +22,7 @@ public class AllTests {
SystemTapUIErrorMessages.setActive(false);
TestSuite suite = new TestSuite(
- "Test for org.eclipse.linuxtools.callgraph.launch.tests");
+ "Test for org.eclipse.linuxtools.internal.callgraph.launch.tests");
//$JUnit-BEGIN$
suite.addTestSuite(SystemTapCommandTest.class);
suite.addTestSuite(ConfigurationTest.class);
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/ConfigurationTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/ConfigurationTest.java
index 30d9d8081e..9c3c492f55 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/ConfigurationTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/ConfigurationTest.java
@@ -17,9 +17,9 @@ import junit.framework.TestCase;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
-import org.eclipse.linuxtools.callgraph.core.LaunchConfigurationConstants;
-import org.eclipse.linuxtools.callgraph.launch.LaunchStapGraph;
-import org.eclipse.linuxtools.callgraph.launch.SystemTapLaunchConfigurationDelegate;
+import org.eclipse.linuxtools.internal.callgraph.core.LaunchConfigurationConstants;
+import org.eclipse.linuxtools.internal.callgraph.launch.LaunchStapGraph;
+import org.eclipse.linuxtools.internal.callgraph.launch.SystemTapLaunchConfigurationDelegate;
public class ConfigurationTest extends TestCase{
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/LaunchShortcutsTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/LaunchShortcutsTest.java
index 966695469e..7649625008 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/LaunchShortcutsTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/LaunchShortcutsTest.java
@@ -11,8 +11,8 @@
package org.eclipse.linuxtools.callgraph.launch.tests;
import org.eclipse.cdt.core.model.IBinary;
-import org.eclipse.linuxtools.callgraph.core.SystemTapUIErrorMessages;
-import org.eclipse.linuxtools.callgraph.launch.LaunchStapGraph;
+import org.eclipse.linuxtools.internal.callgraph.core.SystemTapUIErrorMessages;
+import org.eclipse.linuxtools.internal.callgraph.launch.LaunchStapGraph;
import org.osgi.framework.Bundle;
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandGeneratorTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandGeneratorTest.java
index 1b932b0c58..273fab0b91 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandGeneratorTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandGeneratorTest.java
@@ -13,8 +13,8 @@ package org.eclipse.linuxtools.callgraph.launch.tests;
import java.io.File;
import java.io.IOException;
-import org.eclipse.linuxtools.callgraph.core.PluginConstants;
-import org.eclipse.linuxtools.callgraph.core.SystemTapCommandGenerator;
+import org.eclipse.linuxtools.internal.callgraph.core.PluginConstants;
+import org.eclipse.linuxtools.internal.callgraph.core.SystemTapCommandGenerator;
import junit.framework.TestCase;
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandLineTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandLineTest.java
index aba7cb71f4..2f9ad2c886 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandLineTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapCommandLineTest.java
@@ -23,8 +23,8 @@ import junit.framework.TestCase;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
-import org.eclipse.linuxtools.callgraph.core.LaunchConfigurationConstants;
-import org.eclipse.linuxtools.callgraph.launch.LaunchStapGraph;
+import org.eclipse.linuxtools.internal.callgraph.core.LaunchConfigurationConstants;
+import org.eclipse.linuxtools.internal.callgraph.launch.LaunchStapGraph;
public class SystemTapCommandLineTest extends TestCase {
File tmpfile = new File("");
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapErrorHandlerTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapErrorHandlerTest.java
index 6458e2ebe4..b22e5ac711 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapErrorHandlerTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapErrorHandlerTest.java
@@ -14,7 +14,7 @@ package org.eclipse.linuxtools.callgraph.launch.tests;
import junit.framework.TestCase;
import org.eclipse.core.runtime.NullProgressMonitor;
-import org.eclipse.linuxtools.callgraph.core.SystemTapErrorHandler;
+import org.eclipse.linuxtools.internal.callgraph.core.SystemTapErrorHandler;
public class SystemTapErrorHandlerTest extends TestCase {
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapTabTest.java b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapTabTest.java
index 2d606d622d..d019b04b16 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapTabTest.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/src/org/eclipse/linuxtools/callgraph/launch/tests/SystemTapTabTest.java
@@ -16,8 +16,8 @@ import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
-import org.eclipse.linuxtools.callgraph.launch.LaunchStapGraph;
-import org.eclipse.linuxtools.callgraph.launch.SystemTapOptionsTab;
+import org.eclipse.linuxtools.internal.callgraph.launch.LaunchStapGraph;
+import org.eclipse.linuxtools.internal.callgraph.launch.SystemTapOptionsTab;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Shell;
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/test.xml b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/test.xml
index b3a84d7dd0..d8ce3e4052 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/test.xml
+++ b/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/test.xml
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<project name="testsuite" default="run" basedir=".">
- <property name="classname" value="org.eclipse.linuxtools.callgraph.launch.tests.AllTests" />
- <property name="plugin-name" value="org.eclipse.linuxtools.callgraph.launch.tests" />
+ <property name="classname" value="org.eclipse.linuxtools.internal.callgraph.launch.tests.AllTests" />
+ <property name="plugin-name" value="org.eclipse.linuxtools.internal.callgraph.launch.tests" />
<property name="library-file" value="${eclipse-home}/dropins/${subProjectName2}/plugins/org.eclipse.test/library.xml" />

Back to the top