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

How to use
createView
method
in
bibliothek.gui.dock.action.view.ActionViewConverter

Best Java code snippets using bibliothek.gui.dock.action.view.ActionViewConverter.createView (Showing top 20 results out of 315)

origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, ButtonDockAction action, Dockable dockable ){
    return converter.createView( ActionType.BUTTON, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, SelectableDockAction action, Dockable dockable ){
    return converter.createView( ActionType.CHECK, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, SelectableDockAction action, Dockable dockable ){
    return converter.createView( ActionType.RADIO, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, DropDownAction action, Dockable dockable ){
    return converter.createView( ActionType.DROP_DOWN, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, MenuDockAction action, Dockable dockable ){
    return converter.createView( ActionType.MENU, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-ext-toolbar

  @Override
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, SeparatorAction action, Dockable dockable ){
    return converter.createView( ActionType.SEPARATOR, action, ViewTarget.TITLE, dockable );
  }
} );
origin: xyz.cofe/docking-frames-core

public <V> V createView( ViewTarget<V> target, ActionViewConverter converter, Dockable dockable ){
  return converter.createView( type, this, target, dockable );
}

origin: xyz.cofe/docking-frames-common

public <V> V createView( ViewTarget<V> target, ActionViewConverter converter, Dockable dockable ){
  return converter.createView( PANEL_POPUP, this, target, dockable );
}
origin: xyz.cofe/docking-frames-core

public <V> V createView( ViewTarget<V> target, ActionViewConverter converter, Dockable dockable ){
  return converter.createView( type, this, target, dockable );
}

origin: org.opentcs.thirdparty.dockingframes/docking-frames-core

public <V> V createView( ViewTarget<V> target, ActionViewConverter converter, Dockable dockable ){
  return converter.createView( type, this, target, dockable );
}

origin: org.opentcs.thirdparty.dockingframes/docking-frames-core

public <V> V createView( ViewTarget<V> target, ActionViewConverter converter, Dockable dockable ){
  return converter.createView( ActionType.SEPARATOR, this, target, dockable );
}

origin: xyz.cofe/docking-frames-ext-toolbar

@Override
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action,
    Dockable dockable ){
  return dockable.getController().getActionViewConverter()
      .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable);
}
origin: xyz.cofe/docking-frames-core

/**
 * Creates a new item for <code>action</code> which will be shown on this title.
 * @param action The action which will be triggered by the button
 * @param dockable The {@link Dockable} which will be affected by the action
 * @return the new graphical representation of the action 
 */
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action, Dockable dockable ){
  return dockable.getController().getActionViewConverter().createView( 
      action, ViewTarget.TITLE, dockable );
}

origin: xyz.cofe/docking-frames-ext-toolbar

@Override
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action,
    Dockable dockable ){
  return dockable.getController().getActionViewConverter()
      .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable);
}
origin: org.opentcs.thirdparty.dockingframes/docking-frames-core

/**
 * Creates a new item for <code>action</code> which will be shown on this title.
 * @param action The action which will be triggered by the button
 * @param dockable The {@link Dockable} which will be affected by the action
 * @return the new graphical representation of the action 
 */
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action, Dockable dockable ){
  return dockable.getController().getActionViewConverter().createView( 
      action, ViewTarget.TITLE, dockable );
}

origin: xyz.cofe/docking-frames-ext-toolbar

@Override
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action,
    Dockable dockable ){
  return dockable.getController().getActionViewConverter()
      .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable);
}
origin: xyz.cofe/docking-frames-ext-toolbar

@Override
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action,
    Dockable dockable ){
  return dockable.getController().getActionViewConverter()
      .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable);
}
origin: xyz.cofe/docking-frames-ext-toolbar

@Override
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action,
    Dockable dockable ){
  return dockable.getController().getActionViewConverter()
      .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable);
}
origin: xyz.cofe/docking-frames-core

/**
 * Creates a new item for <code>action</code> which will be shown on this panel. The default
 * implementation will use the {@link ActionViewConverter} of <code>dockable</code> to create the
 * view. The {@link ViewTarget} is set to {@link ViewTarget#TITLE}. Subclasses may override this
 * method to create custom views or use other settings.
 * @param action The action which will be triggered by the button
 * @param dockable The {@link Dockable} which will be affected by the action
 * @return the new graphical representation of the action 
 */
protected BasicTitleViewItem<JComponent> createItemFor( DockAction action, Dockable dockable ){
  return dockable.getController().getActionViewConverter().createView( 
      action, ViewTarget.TITLE, dockable );
}

origin: xyz.cofe/docking-frames-core

/**
 * Creates a new view for <code>action</code>. The default implementation
 * uses the {@link ActionViewConverter} and sets the {@link ViewTarget} to
 * {@link ViewTarget#MENU}.
 * @param action an action
 * @return a handler ready to work with <code>action</code>.
 */
protected MenuViewItem<JComponent> handlerFor( DockAction action ){
  Dockable dockable = getDockable();
  MenuViewItem<JComponent> result = dockable.getController().getActionViewConverter().createView( action, target, dockable );
  
  return result;
}

bibliothek.gui.dock.action.viewActionViewConvertercreateView

Javadoc

Creates and sets up a new view.

Popular methods of ActionViewConverter

  • putTheme
  • putDefault
    Registers a new ViewGenerator to this ActionViewConverter. The generator will have the low priority.
  • getConverter
    Searches a converter for the given action and target.
  • getEntry
    Searches an entry for the given action and target.
  • <init>
    Creates a new ActionViewConverter

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (Timer)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Permission (java.security)
    Legacy security code; do not use.
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top Sublime Text plugins
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