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:
parent
060fdc1e1f
commit
d142a758d5
1 changed files with 16 additions and 0 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue