xajaxCallableObject::getMethods PHP Method

getMethods() public method

public getMethods ( )
    public function getMethods()
    {
        $aReturn = array();
        foreach (get_class_methods($this->obj) as $sMethodName) {
            $aReturn[] = $sMethodName;
        }
        return $aReturn;
    }