GetRecognizerFileName() public method

public GetRecognizerFileName ( bool header ) : string
header bool
return string
Example #1
0
        public virtual string GetRecognizerFileName(bool header)
        {
            AbstractTarget target = GetTarget();

            if (target == null)
            {
                throw new NotSupportedException("Cannot generate code without a target.");
            }

            return(target.GetRecognizerFileName(header));
        }