Class MiscUtil
- java.lang.Object
-
- org.glassfish.admingui.common.util.MiscUtil
-
public class MiscUtil extends Object
- Author:
- jdlee
-
-
Constructor Summary
Constructors Constructor Description MiscUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentgetDocument(String input)static jakarta.el.ValueExpressionsetValueExpression(String expression, Object value)This utility method can be used to create a ValueExpression and set its value.
-
-
-
Method Detail
-
setValueExpression
public static jakarta.el.ValueExpression setValueExpression(String expression, Object value)
This utility method can be used to create a ValueExpression and set its value. An example usage might look like this:
ValueExpression ve = MiscUtil.setValueExpression("#{myMap}", new HashMap());- Parameters:
expression- The expression to create. Note that this requires the #{ and } wrappers.value- The value to which to set the ValueExpression- Returns:
- The newly created ValueExpression
-
-