Package com.sun.tools.doclint.HtmlTag

Examples of com.sun.tools.doclint.HtmlTag.AttrKind


            if (attr != null) {
                boolean first = tagStack.peek().attrs.add(attr);
                if (!first)
                    env.messages.error(HTML, tree, "dc.attr.repeated", name);
            }
            AttrKind k = currTag.getAttrKind(name);
            switch (k) {
                case OK:
                    break;

                case INVALID:
View Full Code Here

TOP

Related Classes of com.sun.tools.doclint.HtmlTag.AttrKind

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.