|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Expression | |
com.cc.framework.security.acl | |
com.cc.framework.security.acl.expr |
Uses of Expression in com.cc.framework.security.acl |
Fields in com.cc.framework.security.acl declared as Expression | |
private Expression |
AccessControlList.expression
The expression with required permissions for this access control list |
Constructors in com.cc.framework.security.acl with parameters of type Expression | |
AccessControlList(Expression expression)
Constructor |
Uses of Expression in com.cc.framework.security.acl.expr |
Subclasses of Expression in com.cc.framework.security.acl.expr | |
class |
ExpressionList
Produktionsregel: expr_list : logical_or_expr | expr_list ';' logical_or_expr |
class |
LogicalAndExpression
Produktionsregel: logical_and_expr : unary_expr | logical_and_expr AND_OP unary_expr |
class |
LogicalOrExpression
Produktionsregel: logical_or_expr : logical_xor_expr | logical_or_expr OR_OP logical_xor_expr |
class |
LogicalXorExpression
Produktionsregel: logical_or_expr : logical_xor_expr | logical_or_expr XOR_OP logical_xor_expr |
class |
PrimaryExpression
Produktionsregel: primary_expr : permission | '(' expr_list ')' |
class |
UnaryExpression
Produktionsregel: unary_expr : primary_expr | unary_operator primary_expr |
Fields in com.cc.framework.security.acl.expr declared as Expression | |
private Expression |
UnaryExpression.operand
Der Operand |
private Expression |
LogicalXorExpression.operandA
Der erste Opperand |
private Expression |
LogicalXorExpression.operandB
Der zweite Opperand |
private Expression |
LogicalOrExpression.operandA
Der erste Opperand |
private Expression |
LogicalOrExpression.operandB
Der zweite Opperand |
private Expression |
LogicalAndExpression.operandA
Der erste Opperand |
private Expression |
LogicalAndExpression.operandB
Der zweite Opperand |
Methods in com.cc.framework.security.acl.expr that return Expression | |
static Expression |
UnaryExpression.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
PrimaryExpression.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
LogicalXorExpression.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
LogicalOrExpression.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
LogicalAndExpression.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
ExpressionList.parse(TokenStream stream)
Die Methode parst den übergebenen Stream |
static Expression |
Expression.parse(java.lang.String source)
Liest den übergebenen Ausdruck ein und erzeugt einen Sysntaxbaum. |
Methods in com.cc.framework.security.acl.expr with parameters of type Expression | |
private static java.lang.String |
ExecutionException.createMessage(java.lang.String pattern,
Expression node,
java.lang.Object[] params)
Erzeugt einen benutzerlesbaren Fehlertext |
Constructors in com.cc.framework.security.acl.expr with parameters of type Expression | |
UnaryExpression(UnaryOperator op,
Expression expr)
Konstruktor für einen unären Ausdruck |
|
PrimaryExpression(Expression expr)
Konstruktor für einen geklammerten Ausdruck |
|
LogicalXorExpression(Expression operandA,
Expression operandB)
Konstruktor |
|
LogicalOrExpression(Expression operandA,
Expression operandB)
Konstruktor |
|
LogicalAndExpression(Expression operandA,
Expression operandB)
Konstruktor |
|
ExecutionException(Expression node,
int code)
Constructor |
|
ExecutionException(Expression node,
int code,
java.lang.Object[] params)
Constructor |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |