* @return The expression parsed.
* @throws PropertyException For errors parsing the expression.
*/
private ExprMultiplicative parseMultiplicativeExpr()
throws PropertyException {
ExprMultiplicative prop = parseUnaryExpr();
loop:
for (;;) {
switch (getCurrentToken()) {
case TOK_DIV:
next();