Class ScriptMethodVisibilityUtil


  • public class ScriptMethodVisibilityUtil
    extends java.lang.Object
    Util class that check methods in script interface are visible or not.
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ScriptMethodVisibilityUtil

        public ScriptMethodVisibilityUtil()
    • 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 return false.