Examples of MarkBacklinkAction


Examples of org.wikipediacleaner.gui.swing.action.MarkBacklinkAction

        (backlinks != null)) {
      String property = backlinks.getProperty(link.getTitle());
      if (!Configuration.VALUE_PAGE_NORMAL.equals(property)) {
        addItem(
            popup, null, GT._("Mark backlink as normal"), true,
            new MarkBacklinkAction(wiki, page, link, Configuration.VALUE_PAGE_NORMAL, backlinks));
      }
      if (!Configuration.VALUE_PAGE_HELP_NEEDED.equals(property)) {
        addItem(
            popup, null, GT._("Mark backlink as needing help"), true,
            new MarkBacklinkAction(wiki, page, link, Configuration.VALUE_PAGE_HELP_NEEDED, backlinks));
      }
      if ((Configuration.VALUE_PAGE_NORMAL.equals(property)) ||
          (Configuration.VALUE_PAGE_HELP_NEEDED.equals(property))) {
        addItem(
            popup, null, GT._("Remove mark on backlink"), true,
            new MarkBacklinkAction(wiki, page, link, null, backlinks));
      }
    }
  }
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.