Package org.wikipediacleaner.utils

Examples of org.wikipediacleaner.utils.StringCheckerUnauthorizedCharacters


   */
  private final StringChecker descriptionChecker;

  public CheckErrorAlgorithm079() {
    super("External link without description");
    descriptionChecker = new StringCheckerUnauthorizedCharacters("[]");
  }
View Full Code Here


    GT._("Convert them to internal links"),
  };

  public CheckErrorAlgorithm091() {
    super("Interwiki link written as external link");
    checker = new StringCheckerUnauthorizedCharacters("[]\"");
  }
View Full Code Here

    GT._("Convert them to internal links"),
  };

  public CheckErrorAlgorithm090() {
    super("Internal link written as external link");
    checker = new StringCheckerUnauthorizedCharacters("[]\"");
  }
View Full Code Here

   */
  private final StringChecker descriptionChecker;

  public CheckErrorAlgorithm030() {
    super("Image without description");
    descriptionChecker = new StringCheckerUnauthorizedCharacters("[]|=");
  }
View Full Code Here

    GT._("Check all links to other language"),
  };

  public CheckErrorAlgorithm068() {
    super("Link to other language");
    checker = new StringCheckerUnauthorizedCharacters("[]\"");
  }
View Full Code Here

          new ChangePreferredDisambiguationAction(
              page.getWikipedia(),
              page.getTitle(), textPane,
              GT._("What link do you want to add to the preferred disambiguations?"),
              null,
              new StringCheckerUnauthorizedCharacters("[|]")),
          null);
      addSubmenu(popup, submenuAddPreferred, 0, 2);

      if (!preferredDabs.isEmpty()) {
        JMenu submenuRemove = new JMenu(GT._("Remove from preferred disambiguations"));
View Full Code Here

TOP

Related Classes of org.wikipediacleaner.utils.StringCheckerUnauthorizedCharacters

Copyright © 2018 www.massapicom. 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.