1 11 package org.eclipse.debug.internal.ui.views; 12 13 import org.eclipse.debug.internal.ui.viewers.model.provisional.PresentationContext; 14 import org.eclipse.debug.ui.IDebugModelPresentation; 15 16 21 public class DebugModelPresentationContext extends PresentationContext { 22 23 private IDebugModelPresentation fPresentation; 24 25 32 public DebugModelPresentationContext(String id, IDebugModelPresentation presentation) { 33 super(id); 34 fPresentation = presentation; 35 } 36 37 public IDebugModelPresentation getModelPresentation() { 38 return fPresentation; 39 } 40 41 } 42 | Popular Tags |