Uses of Class
org.eclipse.wst.jsdt.core.dom.PostfixExpression.Operator

Packages that use PostfixExpression.Operator
org.eclipse.wst.jsdt.core.dom   
 

Uses of PostfixExpression.Operator in org.eclipse.wst.jsdt.core.dom
 

Fields in org.eclipse.wst.jsdt.core.dom declared as PostfixExpression.Operator
static PostfixExpression.Operator PostfixExpression.Operator.DECREMENT
          Postfix decrement "--" operator.
static PostfixExpression.Operator PostfixExpression.Operator.INCREMENT
          Postfix increment "++" operator.
 

Methods in org.eclipse.wst.jsdt.core.dom that return PostfixExpression.Operator
 PostfixExpression.Operator PostfixExpression.getOperator()
          Returns the operator of this postfix expression.
static PostfixExpression.Operator PostfixExpression.Operator.toOperator(java.lang.String token)
          Returns the postfix operator corresponding to the given string, or null if none.
 

Methods in org.eclipse.wst.jsdt.core.dom with parameters of type PostfixExpression.Operator
 void PostfixExpression.setOperator(PostfixExpression.Operator operator)
          Sets the operator of this postfix expression.