1 11 package org.eclipse.debug.internal.ui.viewers; 12 13 import org.eclipse.jface.viewers.TreePath; 14 import org.eclipse.swt.graphics.Image; 15 16 17 22 public interface ILabelResult { 23 24 29 public String [] getLabels(); 30 31 36 public Image[] getImages(); 37 38 43 public Object getElement(); 44 45 50 public TreePath getTreePath(); 51 52 57 public int getDepth(); 58 } 59 | Popular Tags |