1 11 package org.eclipse.jdt.internal.debug.ui.monitors; 12 13 import org.eclipse.debug.core.model.DebugElement; 14 import org.eclipse.debug.core.model.IDebugTarget; 15 16 19 public class NoMonitorInformationElement extends DebugElement { 20 21 public NoMonitorInformationElement(IDebugTarget target) { 22 super(target); 23 } 24 25 28 public String getModelIdentifier() { 29 return getDebugTarget().getModelIdentifier(); 30 } 31 32 } 33 | Popular Tags |