Skip to content

Commit

Permalink
add methods for editing OptionDescriptor in GoToAction and SearchEver…
Browse files Browse the repository at this point in the history
…ywhere
  • Loading branch information
bulenkov committed Feb 22, 2017
1 parent 65d6e1b commit 501c1bc
Showing 1 changed file with 13 additions and 1 deletion.
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2015 JetBrains s.r.o.
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -74,6 +74,18 @@ public String getGroupName() {
return myGroupName;
}

public String getValue() {
return null;
}

public boolean hasExternalEditor() {
return false;
}

public void invokeInternalEditor() {

}

public String toString() {
return myHit;
}
Expand Down

0 comments on commit 501c1bc

Please sign in to comment.