tmf: Clean up tmf.core.trace package
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / custom / CustomXmlTraceContext.java
index 2501653376a2af442a616e3890b98c4aa88ec110..55a92f11e9b034b33f74da690be02cba68a6d7af 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2010 Ericsson
+ * Copyright (c) 2010, 2013 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
 
 package org.eclipse.linuxtools.internal.tmf.ui.parsers.custom;
 
-import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
 import org.eclipse.linuxtools.tmf.core.trace.TmfContext;
+import org.eclipse.linuxtools.tmf.core.trace.location.ITmfLocation;
 
+/**
+ * Trace context for custom XML traces.
+ *
+ * @author Patrick Tassé
+ */
 public class CustomXmlTraceContext extends TmfContext {
 
+    /**
+     * Constructor
+     *
+     * @param location
+     *            The location (in the file) of this context
+     * @param rank
+     *            The rank of the event pointed by this context
+     */
     public CustomXmlTraceContext(ITmfLocation location, long rank) {
         super(location, rank);
     }
 
-    /* (non-Javadoc)
-     * @see java.lang.Object#hashCode()
-     */
     @Override
     public int hashCode() {
         return super.hashCode();
     }
 
-    /* (non-Javadoc)
-     * @see java.lang.Object#equals(java.lang.Object)
-     */
     @Override
     public boolean equals(Object obj) {
         if (this == obj) {
This page took 0.024212 seconds and 5 git commands to generate.