1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Added method to replace access to non-accessible method of enclosing type.

This commit is contained in:
Mikhail Khodjaiants 2002-10-08 20:20:22 +00:00
parent 060fdc1e1f
commit d142a758d5

View file

@ -208,4 +208,20 @@ public abstract class CBreakpoint extends Breakpoint
setAttribute( INSTALL_COUNT, count - 1 );
}
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.Breakpoint#ensureMarker()
*/
protected IMarker ensureMarker() throws DebugException
{
return super.ensureMarker();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.Breakpoint#setAttribute(String, Object)
*/
protected void setAttribute( String attributeName, Object value ) throws CoreException
{
super.setAttribute( attributeName, value );
}
}