Exemplo n.º 1
0
        public ReflectionMethod getConstructor()
        {
            AbstractFunction cons = _cls.getConstructor();

            if (cons != null)
            {
                return(new ReflectionMethod(_name, cons));
            }
            else
            {
                return(null);
            }
        }