Uploaded image for project: 'MyFaces Trinidad'
  1. MyFaces Trinidad
  2. TRINIDAD-1588

NullPointerException using labelAndAccessKey Attribute in XMLMenuModel itemNode Definition

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2.12-core
    • 1.2.13-core
    • Components
    • None

    Description

      With Trinidad 1.2.12 i've got the an Exception using the following definition, which worked very well in Version before 1.2.12:

      <itemNode id=" administration" immediate="true"
      labelAndAccessKey="Administration" rendered="true" disabled="true">
      </itemNode>

      The labelAndAccessKey Value uses no AccessKey Notation (&), which results in the following NullpointerException:
      java.lang.NullPointerException
      at org.apache.myfaces.trinidadinternal.menu.ImmutableItemNode._joinLabelAndAccessKey(ImmutableItemNode.java:569)
      at org.apache.myfaces.trinidadinternal.menu.ImmutableItemNode.getLabelAndAccessKey(ImmutableItemNode.java:522)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:585)
      at javax.el.BeanELResolver.getValue(BeanELResolver.java:62)
      at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
      at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
      at org.apache.el.parser.AstValue.getValue(AstValue.java:97)
      at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
      at com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:71)

      There should be a check for a null accessKey like in ImmutableGroupNode and MenuNode since this is a legal condition.
      add before line 522:
      if(accessKey == null)

      { return label; }

      Attachments

        1. patch.txt
          0.8 kB
          Markus Dreher

        Activity

          People

            matzew Matthias Wessendorf
            maece Markus Dreher
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: