Examples of DisambiguationPageListMenuCreator


Examples of org.wikipediacleaner.gui.swing.menu.DisambiguationPageListMenuCreator

  /* (non-Javadoc)
   * @see org.wikipediacleaner.gui.swing.component.AbstractPageListPopupListener#createPopup(javax.swing.JPopupMenu, org.wikipediacleaner.api.data.Page)
   */
  @Override
  protected void createPopup(JPopupMenu popup, Page link) {
    DisambiguationPageListMenuCreator menu = new DisambiguationPageListMenuCreator();
    if (backlinksProperties != null) {
      menu.addSeparator(popup);
      menu.addItemsMarkBacklink(wikipedia, popup, page, link, backlinksProperties);
    }
    menu.addSeparator(popup);
    menu.addAnalyze(wikipedia, popup, link);
    menu.addView(wikipedia, popup, link, true);
    menu.addDisambiguation(wikipedia, popup, link);
    menu.addItemPurgeCache(wikipedia, popup, link, window);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.