public bool Match(String title, String className, String filePath)
 {
     return(Title.Match(title) &&
            ClassName.Match(className) &&
            ProcessFilePath.Match(filePath));
 }