[ https://issues.apache.org/jira/browse/CXF-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985943#action_12985943 ]
Andreas Veithen commented on CXF-3283: -------------------------------------- By definition, Javadoc is HTML 4, so having <p> tags without corresponding end tags is perfectly valid. By the way, if you look at the Javadoc of the JRE, you can see that omitting </p> is the rule. > Generated <p> do not have end tags. > ----------------------------------- > > Key: CXF-3283 > URL: https://issues.apache.org/jira/browse/CXF-3283 > Project: CXF > Issue Type: Improvement > Affects Versions: 2.3.2 > Reporter: Robert Liguori > Priority: Trivial > > Generated <p> do not have end tags. > Use case: > wsdl2java > http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?wsdl > Example for ArrayOfMovies.java: > /** > * <p>Java class for ArrayOfMovie complex type. > * > * <p>The following schema fragment specifies the expected content contained > within this class. > * > * <pre> > * <complexType name="ArrayOfMovie"> > * <complexContent> > * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> > * <sequence> > * <element name="Movie" > type="{http://www.ignyte.com/whatsshowing}Movie" maxOccurs="unbounded" > minOccurs="0"/> > * </sequence> > * </restriction> > * </complexContent> > * </complexType> > * </pre> > * > * > */ > Recommendation is to add </p> end tags where appropriate. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.