Skip to content

Commit

Permalink
Fixing some doclint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Jun 7, 2015
1 parent 8e5d361 commit 893a725
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
@@ -1,4 +1,5 @@
#org.springsource.ide.eclipse.gradle.core.preferences.GradleProjectPreferences
#Sat Aug 02 14:31:00 EDT 2014
#Fri Apr 24 23:25:02 EDT 2015
build.family.org.gradle.tooling.model.eclipse.HierarchicalEclipseProject=;
org.springsource.ide.eclipse.gradle.linkedresources=
org.springsource.ide.eclipse.gradle.rootprojectloc=
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -4,7 +4,7 @@ group = 'com.fifesoft'
archivesBaseName = 'autocomplete'

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile( [ 'junit:junit:4.11' ] )
}

// Regenerate local gradlew
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/org/fife/ui/autocomplete/AutoCompletion.java
Expand Up @@ -724,6 +724,8 @@ public boolean isAutoCompleteEnabled() {
* changes. If set to false, caller has to ensure refresh of the popup
* content.
*
* @return Whether the popup should be hidden when the completion provider
* changes.
* @see #setHideOnCompletionProviderChange(boolean)
*/
protected boolean isHideOnCompletionProviderChange() {
Expand All @@ -735,6 +737,8 @@ protected boolean isHideOnCompletionProviderChange() {
* Whether or not the popup should be hidden when user types a space (or
* any character that resets the completion list to "all completions").
*
* @return Whether the popup should be hidden when the completion list is
* reset to show all completions.
* @see #setHideOnNoText(boolean)
*/
protected boolean isHideOnNoText() {
Expand Down Expand Up @@ -1003,6 +1007,8 @@ public void setExternalURLHandler(ExternalURLHandler handler) {
* CompletionProvider changes. If set to false, caller has to ensure refresh
* of the popup content.
*
* @param hideOnCompletionProviderChange Whether the popup should be hidden
* when the completion provider changes.
* @see #isHideOnCompletionProviderChange()
*/
protected void setHideOnCompletionProviderChange(
Expand All @@ -1015,6 +1021,8 @@ protected void setHideOnCompletionProviderChange(
* Sets whether or not the popup should be hidden when user types a space
* (or any character that resets the completion list to "all completions").
*
* @param hideOnNoText Whether the popup sh ould be hidden when the
* completion list is reset to show all completions.
* @see #isHideOnNoText()
*/
protected void setHideOnNoText(boolean hideOnNoText) {
Expand Down
Expand Up @@ -28,7 +28,7 @@ public class AutoCompletionEvent extends EventObject {
/**
* Constructor.
*
* @param source The <coded>AutoCompletion</code> instance that fired
* @param source The <code>AutoCompletion</code> instance that fired
* this event.
* @param type The event type.
*/
Expand Down

0 comments on commit 893a725

Please sign in to comment.