ImagePosition.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.traceviewer.painter;
00002 
00003 import org.eclipse.swt.graphics.Image;
00004 
00005 public class ImagePosition {
00006     final public Image image;
00007     final public int position;
00008     
00009     public ImagePosition(int position, Image image) 
00010     {
00011         this.image = image;
00012         this.position = position;
00013     }
00014 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1