~ubuntu-branches/ubuntu/utopic/eclipse-linuxtools/utopic

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallGraphConstants.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-05-12 18:11:40 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140512181140-w237r3vsah1tmybz
Tags: 2.2.1-1
* New upstream release.
* Refreshed d/patches.
* Removed eclipse-cdt-valgrind-remote package, all its functionality
  is now provided by eclipse-cdt-profiling-framework-remote.
* Added remove-license-feature.patch.
* Bump Standards-Version to 3.9.5.
* Enable eclipse-changelog package.
* Enable eclipse-rpm-editor package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * are made available under the terms of the Eclipse Public License v1.0
5
5
 * which accompanies this distribution, and is available at
6
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 
 * 
 
7
 *
8
8
 * Contributors:
9
9
 *     Red Hat - initial API and implementation
10
10
 *******************************************************************************/
11
11
 
12
12
package org.eclipse.linuxtools.internal.callgraph;
13
13
 
14
 
public class CallGraphConstants {
15
 
        
16
 
        private static String PLUGIN_LOCATION = ""; //$NON-NLS-1$
17
 
        public static final String viewID = "org.eclipse.linuxtools.callgraph.callgraphview"; //$NON-NLS-1$
18
 
        
19
 
        public static void setPluginLocation(String val) {
20
 
                PLUGIN_LOCATION = val;
21
 
        }
22
 
        
23
 
        public static String getPluginLocation() {
24
 
                return PLUGIN_LOCATION;
25
 
        }
26
 
                
27
 
                
 
14
public interface CallGraphConstants {
 
15
 
 
16
        String VIEW_ID = "org.eclipse.linuxtools.callgraph.callgraphview"; //$NON-NLS-1$
 
17
        String PLUGIN_ID = "org.eclipse.linuxtools.callgraph"; //$NON-NLS-1$
28
18
 
29
19
}