All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.test.tool.htmlcheck.HtmlChecker Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package nablarch.test.tool.htmlcheck;

import java.io.File;

import nablarch.core.util.annotation.Published;

/**
 * HTML チェックを行うクラスのインタフェース。
 *
 * @author Koichi Asano 
 *
 */
@Published(tag = "architect")
public interface HtmlChecker {

    /**
     * Htmlファイルのチェックを行う。
* チェック内容は下記の通りである。
*
    *
  • 正しい構文で記述されていること。
  • *
  • 許可されていないタグが使用されていないこと。
  • *
* * @param html チェック対象HTMLファイル * @throws InvalidHtmlException チェック結果がNGの場合 */ void checkHtml(File html) throws InvalidHtmlException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy