congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Controller.addActionIfNotAlreadySet
Code IndexAdd Tabnine to your IDE (free)

How to use
addActionIfNotAlreadySet
method
in
org.freeplane.features.mode.Controller

Best Java code snippets using org.freeplane.features.mode.Controller.addActionIfNotAlreadySet (Showing top 1 results out of 315)

origin: freeplane/freeplane

@Override
public void visit(Entry target) {
  final DefaultComboBoxModel filterConditions = filterController.getFilterConditions();
  final HashSet<String> usedNames = new HashSet<String>();
  for(int i = 0; i < filterConditions.getSize(); i++){
    final ASelectableCondition condition = (ASelectableCondition) filterConditions.getElementAt(i);
    final String conditionName = condition.getUserName();
    if(conditionName != null && usedNames.add(conditionName)){
      final ApplyNamedFilterAction action = new ApplyNamedFilterAction(filterController, condition);
      controller.addActionIfNotAlreadySet(action);
      new EntryAccessor().addChildAction(target, action);
    }
  }
}
org.freeplane.features.modeControlleraddActionIfNotAlreadySet

Popular methods of Controller

  • getCurrentController
  • getCurrentModeController
  • getMap
  • getMapViewManager
  • getModeController
  • getViewController
  • getResourceController
  • getSelection
  • addApplicationLifecycleListener
  • addOptionValidator
  • getExtension
  • <init>
  • getExtension,
  • <init>,
  • addAction,
  • addExtension,
  • addMapLifeCycleListener,
  • addModeController,
  • close,
  • closeAllMaps,
  • exec

Popular in Java

  • Reactive rest calls using spring rest template
  • onCreateOptionsMenu (Activity)
  • compareTo (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now