Uses of Class
com.realtime.crossfire.jxclient.skin.skin.Expression

Packages that use Expression
com.realtime.crossfire.jxclient.skin.factory   
com.realtime.crossfire.jxclient.skin.io   
com.realtime.crossfire.jxclient.skin.skin   
 

Uses of Expression in com.realtime.crossfire.jxclient.skin.factory
 

Methods in com.realtime.crossfire.jxclient.skin.factory with parameters of type Expression
 java.lang.Iterable<GUIElement> DialogFactory.newDialog(TooltipManager tooltipManager, JXCWindowRenderer windowRenderer, GUIElementListener elementListener, java.lang.String name, Expression w, Expression h, java.lang.String title)
          Create a new dialog.
 

Uses of Expression in com.realtime.crossfire.jxclient.skin.io
 

Methods in com.realtime.crossfire.jxclient.skin.io that return Expression
static Expression ExpressionParser.parseExpression(java.lang.String str)
          Parses an integer constant.
private static Expression ExpressionParser.parseIntegerConstant(java.lang.String str)
          Parses an integer constant string.
 

Uses of Expression in com.realtime.crossfire.jxclient.skin.skin
 

Fields in com.realtime.crossfire.jxclient.skin.skin declared as Expression
private  Expression Extent.h
          The height.
private  Expression Extent.w
          The width.
private  Expression Extent.x
          The x coordinate.
private  Expression Extent.y
          The y coordinate.
 

Methods in com.realtime.crossfire.jxclient.skin.skin that return Expression
 Expression Expression.addConstant(int value)
          Returns this expression plus a constant value.
 Expression Extent.getHExpression()
          Returns the height.
 Expression Extent.getWExpression()
          Returns the width.
 

Methods in com.realtime.crossfire.jxclient.skin.skin with parameters of type Expression
 void Extent.setLocation(Expression x, Expression y)
          Sets the location.
 void Extent.setSize(Expression w, Expression h)
          Sets the size.
 

Constructors in com.realtime.crossfire.jxclient.skin.skin with parameters of type Expression
Expression(Expression expression1, boolean negative, Expression expression2)
          Creates a new instance as the sum or difference of two expressions.
Extent(Expression x, Expression y, Expression w, Expression h)
          Creates a new instance.