mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Typos in javadoc
This commit is contained in:
parent
258181e027
commit
2d96271d88
6 changed files with 7 additions and 15 deletions
|
@ -50,7 +50,7 @@ public abstract class AbstractBreakpointVMNode extends AbstractVMNode {
|
|||
|
||||
/**
|
||||
* Class that creates the element object for the corresponding breakpoints.
|
||||
* This element object will be populated in the breakpoitns view to represent
|
||||
* This element object will be populated in the breakpoints view to represent
|
||||
* the given breakpoint.
|
||||
*/
|
||||
abstract protected Object createBreakpiontElement(IBreakpoint bp);
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.eclipse.swt.graphics.RGB;
|
|||
import org.eclipse.ui.IMemento;
|
||||
|
||||
/**
|
||||
* Breakpiont VM Node which uses VM Contexts to populate breakpoint elements
|
||||
* Breakpoint VM Node which uses VM Contexts to populate breakpoint elements
|
||||
* in the view. Any actions or other selection listeners which depend on the
|
||||
* breakpoint object will not work with these elements unless they use the
|
||||
* adapter mechanism to obtain the breakpoints.
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.eclipse.cdt.dsf.concurrent.RequestMonitor;
|
|||
import org.eclipse.cdt.dsf.datamodel.DMContexts;
|
||||
import org.eclipse.cdt.dsf.datamodel.IDMContext;
|
||||
import org.eclipse.cdt.dsf.debug.service.IBreakpoints.IBreakpointsTargetDMContext;
|
||||
import org.eclipse.cdt.dsf.debug.ui.viewmodel.expression.IExpressionVMNode;
|
||||
import org.eclipse.cdt.dsf.internal.ui.DsfUIPlugin;
|
||||
import org.eclipse.cdt.dsf.ui.viewmodel.AbstractVMAdapter;
|
||||
import org.eclipse.cdt.dsf.ui.viewmodel.AbstractVMProvider;
|
||||
|
@ -58,15 +57,8 @@ import org.eclipse.jface.viewers.TreePath;
|
|||
import org.eclipse.ui.IWorkbenchWindow;
|
||||
|
||||
/**
|
||||
* The expression provider is used to populate the contents of the expressions
|
||||
* view. The node hierarchy in this view is a little different than in a typical
|
||||
* provider: the expression manager node should be registered as the single child
|
||||
* of the root node and no nodes should be registered as children of expression node.
|
||||
* Instead the top level expression nodes should be registered with a call to
|
||||
* {@link #setExpressionNodes(IExpressionVMNode[])}. And each expression node can
|
||||
* have its own sub-hierarchy of elements as needed. However all nodes configured
|
||||
* with this provider (with the exception of the root and the expression manager)
|
||||
* should implement {@link IExpressionVMNode}.
|
||||
* The breakpoint provider is used to populate the contents of the breakpoints
|
||||
* view.
|
||||
*
|
||||
* @since 2.1
|
||||
*/
|
||||
|
|
|
@ -98,7 +98,7 @@ abstract class DataCache<V> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Request data from the cache. The cache is valid, it will complete the
|
||||
* Request data from the cache. If the cache is valid, it will complete the
|
||||
* request immediately, otherwise data will first be retrieved from the
|
||||
* source.
|
||||
* @param req
|
||||
|
|
|
@ -13,7 +13,7 @@ package org.eclipse.cdt.dsf.debug.ui.viewmodel.breakpoints;
|
|||
import org.eclipse.debug.core.model.IBreakpoint;
|
||||
|
||||
/**
|
||||
* Breakpoint node which uses raw breakpiont objects (without a wrapper) as
|
||||
* Breakpoint node which uses raw breakpoint objects (without a wrapper) as
|
||||
* elements which are populated into the view. The breakpoint objects are
|
||||
* responsible for supplying their own label and memento providers, as well
|
||||
* as content provider for any children.
|
||||
|
|
|
@ -34,7 +34,7 @@ public interface IBreakpointsExtension extends IBreakpoints {
|
|||
}
|
||||
|
||||
/**
|
||||
* If a given execution context was suspended due hitting a breakpoint,
|
||||
* If a given execution context was suspended due to hitting a breakpoint,
|
||||
* this method should return the breakpoints which caused the thread or
|
||||
* container to suspend.
|
||||
* <p>
|
||||
|
|
Loading…
Add table
Reference in a new issue