OSDN Git Service

Ver8.5.2.0
[opengion/opengionV8.git] / uap / webapps / gf / src / org / opengion / fukurou / taglet / DocTreeTaglib.java
index ed81592..f2e108f 100644 (file)
@@ -139,7 +139,7 @@ public class DocTreeTaglib extends AbstractDocTree {
                        if( !typEle.getModifiers().contains( Modifier.PUBLIC ) ||
                                !fullName.contains( OG_TAG_CLASS ) ) { continue; }              // public かつ taglib に絞る
 
-                       final DocCommentTree docTree = docUtil.getDocCommentTree(typEle);               // ドキュメンテーションコメントが見つからない場合、null が返る。
+                       final DocCommentTree docTree = docUtil.getDocCommentTree(typEle);               // ドキュメンテーションコメントが見つからない場合、null が返る。
 
 //                     final List<? extends DocTree> desc      = docTree == null ? EMPTY_LIST : docTree.getFirstSentence();
 //                     final List<? extends DocTree> cmnt      = docTree == null ? EMPTY_LIST : docTree.getFullBody();
@@ -183,7 +183,7 @@ public class DocTreeTaglib extends AbstractDocTree {
                                for( final ExecutableElement ele : ElementFilter.methodsIn(loopEle.getEnclosedElements())) {            // メソッドだけに絞る
                                        if( !ele.getModifiers().contains( Modifier.PUBLIC ) ) { continue; }                                             // public だけに絞る
 
-                                       final DocCommentTree mdoc = docUtil.getDocCommentTree(ele);             // ドキュメンテーションコメントが見つからない場合、null が返る。
+                                       final DocCommentTree mdoc = docUtil.getDocCommentTree(ele);             // ドキュメンテーションコメントが見つからない場合、null が返る。
                                        if( mdoc == null ) { continue; }
 
                                        final Map<String,List<String>> blkTagMap2 = blockTagsMap(mdoc);