[ https://issues.apache.org/jira/browse/ADFFACES-350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Matthias Weßendorf updated ADFFACES-350: ---------------------------------------- Affects Version/s: 1.0.1-incubating-core-SNAPSHOT > NullPointerException if tr:table tag containins a comment > --------------------------------------------------------- > > Key: ADFFACES-350 > URL: https://issues.apache.org/jira/browse/ADFFACES-350 > Project: MyFaces ADF-Faces > Issue Type: Bug > Affects Versions: 1.0.1-incubating-core-SNAPSHOT > Environment: Windows XP, MyFaces, Facelets > Reporter: Florian Bartels > > The following NPE occurs iff the table tag contains a comment: > java.lang.NullPointerException > at > org.apache.myfaces.trinidad.component.UIXCollection.restoreStampState(UIXCollection.java:803) > at > org.apache.myfaces.trinidad.component.UIXTable.restoreStampState(UIXTable.java:323) > at > org.apache.myfaces.trinidad.component.StampState.restoreChildStampState(StampState.java:152) > at > org.apache.myfaces.trinidad.component.UIXTable.restoreStampState(UIXTable.java:320) > at > org.apache.myfaces.trinidad.component.UIXCollection._restoreStampState(UIXCollection.java:1115) > at > org.apache.myfaces.trinidad.component.UIXCollection.postRowDataChange(UIXCollection.java:708) > at > org.apache.myfaces.trinidad.component.UIXCollection.setRowIndex(UIXCollection.java:406) > at > org.apache.myfaces.trinidad.component.UIXTable._processStamps(UIXTable.java:395) > at > org.apache.myfaces.trinidad.component.UIXTable.processFacetsAndChildren(UIXTable.java:268) > at > org.apache.myfaces.trinidad.component.UIXCollection.decodeChildrenImpl(UIXCollection.java:159) > ... > examlpe .jspx: > <?xml version="1.0" encoding="ISO-8859-1" ?> > <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:tr="http://myfaces.apache.org/trinidad" version="2.0"> > <tr:document> > <tr:form> > <tr:outputText value="Currency: XXX"></tr:outputText> > <tr:table value="#{locationForm.locations}" var="row"> > <!-- some text causing the bug--> > <f:facet name="header"> > <tr:commandButton text="Delete" > > actionListener="#{locationForm.delete}" /> > </f:facet> > <tr:column sortable="true" > sortProperty="#{row.city.state.country}"> > <f:facet name="header"> > <tr:outputText value="Country" > /> > </f:facet> > <tr:outputText > value="#{row.city.state.country}" /> > </tr:column> > </tr:table> > </tr:form> > </tr:document> > </jsp:root> > if "<!-- some text causing the bug-->" is removed the page is rendered as > usual. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.