X-Git-Url: http://git.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 3239f9d..9f769a9 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/PHPEditorActionDefinitionIds.java @@ -2,11 +2,23 @@ package net.sourceforge.phpeclipse.phpeditor; public interface PHPEditorActionDefinitionIds { /** - * Value: net.sourceforge.phpeclipse.phpeditor.comment */ - public static final String COMMENT= "net.sourceforge.phpeclipse.phpeditor.comment"; + * Value: net.sourceforge.phpeclipse.phpeditor.comment + */ + public static final String COMMENT = + "net.sourceforge.phpeclipse.phpeditor.comment"; /** * Value: net.sourceforge.phpeclipse.phpeditor.uncomment */ - public static final String UNCOMMENT = "net.sourceforge.phpeclipse.phpeditor.uncomment"; + public static final String UNCOMMENT = + "net.sourceforge.phpeclipse.phpeditor.uncomment"; + + /** + * Action definition ID of the edit -> content assist proposal action (value + * "org.phpeclipse.phpdt.ui.edit.text.php.content.assist. proposals" + * ). + */ + public static final String CONTENT_ASSIST_PROPOSALS = + "net.sourceforge.phpeclipse.ui.edit.text.php.content.assist.proposals"; //$NON-NLS-1$ + }