In order to get properties, you need to look at the expression used to select the clear() method, not at the parent.
From the MethodInvocationTree, get the expression used as methodSelect(). Then look at its kind, it should be a MEMBER_SELECT (containing clear as identifier, and this.properties as expression). From there, you should be able to get back to the properties field.