1 11 package org.eclipse.ui.views.framelist; 12 13 21 public interface IFrameSource { 22 23 26 public static final int CURRENT_FRAME = 0x0001; 27 28 31 public static final int SELECTION_FRAME = 0x0002; 32 33 36 public static final int PARENT_FRAME = 0x0003; 37 38 41 public static final int FULL_CONTEXT = 0x0001; 42 43 54 public Frame getFrame(int whichFrame, int flags); 55 } 56 | Popular Tags |