Skip to content

Commit

Permalink
GutterIconDescriptor: javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
YannCebron committed Dec 16, 2015
1 parent e6c18d1 commit 18ab719
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,18 @@
import javax.swing.*;

/**
* Allows user to configure visible gutter icons.
*
* @author Dmitry Avdeev
* @since 144
*/
public abstract class GutterIconDescriptor {

protected static final Option[] NO_OPTIONS = new Option[0];

/**
* Human-readable provider name for UI.
*
* @return null if no configuration needed
*/
@Nullable("null means disabled")
Expand All @@ -39,7 +43,9 @@ public Icon getIcon() {
return null;
}

public boolean isEnabledByDefault() { return true; }
public boolean isEnabledByDefault() {
return true;
}

public String getId() {
return getClass().getName();
Expand Down

0 comments on commit 18ab719

Please sign in to comment.