Rename 'locationData' to 'locationInfo' (for lack of a better name...)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfLocation.java
index 282f9fb7b8285bc4134aca0a0899fd89cfe1c669..7ca9fb0ac9be811eee957c875cb776517a5c12a6 100644 (file)
@@ -93,11 +93,11 @@ public class CtfLocation implements ITmfLocation, Cloneable {
      * Get the Location Data of this location
      *
      * @return The CtfLocationData
-     * @see org.eclipse.linuxtools.tmf.core.trace.ITmfLocation#getLocationData()
+     * @see org.eclipse.linuxtools.tmf.core.trace.ITmfLocation#getLocationInfo()
      * @since 2.0
      */
     @Override
-    public CtfLocationData getLocationData() {
+    public CtfLocationData getLocationInfo() {
         return fLocation;
     }
 
@@ -149,10 +149,10 @@ public class CtfLocation implements ITmfLocation, Cloneable {
      */
     @Override
     public String toString() {
-        if( this.getLocationData().equals(CtfLocation.INVALID_LOCATION )) {
+        if( this.getLocationInfo().equals(CtfLocation.INVALID_LOCATION )) {
             return "CtfLocation: INVALID"; //$NON-NLS-1$
         }
-        return "CtfLocation: " + getLocationData().toString(); //$NON-NLS-1$
+        return "CtfLocation: " + getLocationInfo().toString(); //$NON-NLS-1$
     }
 
 
This page took 0.023787 seconds and 5 git commands to generate.