1 11 package org.eclipse.debug.internal.ui.viewers.provisional; 12 13 14 21 public abstract class AbstractColumnEditor implements IColumnEditor { 22 23 private IPresentationContext fContext; 24 25 28 public void init(IPresentationContext context) { 29 fContext = context; 30 } 31 32 35 public void dispose() { 36 fContext = null; 37 } 38 39 44 protected IPresentationContext getPresentationContext() { 45 return fContext; 46 } 47 } 48 | Popular Tags |