Class ScriptMethodVisibilityUtil
- java.lang.Object
-
- org.eclipse.birt.report.engine.api.script.ScriptMethodVisibilityUtil
-
public class ScriptMethodVisibilityUtil extends java.lang.Object
Util class that check methods in script interface are visible or not.
-
-
Constructor Summary
Constructors Constructor Description ScriptMethodVisibilityUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isHide(java.lang.String className, java.lang.String methodName)
Check script method is hide or not.
-
-
-
Method Detail
-
isHide
public static boolean isHide(java.lang.String className, java.lang.String methodName)
Check script method is hide or not. if exist in map, that means need to be hidden, return true. else return false.- Parameters:
className
- class name.for example :org.eclipse.birt.report.engine.api.methodName
- method name.for example: isHide.- Returns:
true
if need to be hidden.else returnfalse
.
-
-