示例#1
0
    private void GetAttributes(MetaTagAttributes attrs, String Name, boolean stopAfterFirst) {
      Attribute attr;

      for (int x = 0; x < attrList.get_Count(); x++) {
        attr = get_Item(x);
        if (attr.name.equalsIgnoreCase(Name)) {
          attrs.Add(attr);
          if (stopAfterFirst) break;
        }
      }
    }