X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java index 6605410..5ee914e 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java @@ -10,6 +10,21 @@ public interface PHPEditorActionDefinitionIds extends ITextEditorActionDefiniti * @since 2.1 */ public static final String GOTO_MATCHING_BRACKET = "net.sourceforge.phpeclipse.ui.edit.text.php.goto.matching.bracket"; //$NON-NLS-1$ + /** + * Action definition ID of the edit -> go to next member action + * (value "org.eclipse.jdt.ui.edit.text.java.goto.next.member"). + * + * @since 2.1 + */ + public static final String GOTO_NEXT_MEMBER= "net.sourceforge.phpeclipse.ui.edit.text.php.goto.next.member"; //$NON-NLS-1$ + + /** + * Action definition ID of the edit -> go to previous member action + * (value "org.eclipse.jdt.ui.edit.text.java.goto.previous.member"). + * + * @since 2.1 + */ + public static final String GOTO_PREVIOUS_MEMBER= "net.sourceforge.phpeclipse.ui.edit.text.php.goto.previous.member"; //$NON-NLS-1$ /** * Value: net.sourceforge.phpeclipse.phpeditor.comment @@ -60,5 +75,4 @@ public interface PHPEditorActionDefinitionIds extends ITextEditorActionDefiniti */ // public static final String CONTENT_ASSIST_PROPOSALS = "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$ - }