xajaxCallableObject::isClass PHP Method

isClass() public method

Determins if the specified class name matches the class name of the object referenced by obj>. sClass - (string): The name of the class to check. Returns: boolean - True of the specified class name matches the class of the object being referenced; false otherwise.
public isClass ( $sClass )
    public function isClass($sClass)
    {
        if (get_class($this->obj) === $sClass) {
            return true;
        }
        return false;
    }