public class Html4HtmlChecker extends java.lang.Object implements HtmlChecker
| Modifier and Type | Field and Description | 
|---|---|
static java.nio.charset.Charset | 
DEFALUT_ENCODING
デフォルトエンコーディング 
 | 
| Constructor and Description | 
|---|
Html4HtmlChecker(java.lang.String confFilePath)
コンストラクタ 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
checkHtml(java.io.File html)
Htmlファイルのチェックを行う。 
チェック内容は下記の通りである。 正しい構文で記述されていること。 許可されていないタグが使用されていないこと。  | 
protected void | 
checkHtml(java.io.File html,
         java.nio.charset.Charset encoding)
Htmlファイルのチェックを行う。 
チェック内容は下記の通りである。 正しい構文で記述されていること。 許可されていないタグが使用されていないこと。  | 
public static final java.nio.charset.Charset DEFALUT_ENCODING
public Html4HtmlChecker(java.lang.String confFilePath)
confFilePath - 設定ファイルパスprotected void checkHtml(java.io.File html,
                         java.nio.charset.Charset encoding)
                  throws InvalidHtmlException
html - チェック対象HTMLファイルencoding - 指定文字コードInvalidHtmlException - チェック結果がNGの場合public void checkHtml(java.io.File html)
               throws InvalidHtmlException
checkHtml in interface HtmlCheckerhtml - チェック対象HTMLファイルInvalidHtmlException - チェック結果がNGの場合HtmlChecker.checkHtml(java.io.File)