Example #1
0
        public virtual bool IsLiteralAttribute(string attrname)
        {
            Attribute np = Lookup(attrname);

            return(np != null && np.Literal);
        }
Example #2
0
        public virtual bool IsScript(string attrname)
        {
            Attribute np = Lookup(attrname);

            return(np != null && np.AttrCheck == AttrCheckImpl.CheckScript);
        }