Package com.sogou.qadev.service.cynthia.bean

Examples of com.sogou.qadev.service.cynthia.bean.SegmentTagBase


 
        indentFields = ((Element)tempNodeList.item( i )).getChildNodes();
      }
    }
 
    SegmentTagBase segmentTagBase = new SegmentTagBase();
 
    // 生成显示字段和缩进字段名称集合
    Set<String> displayFieldsNameSet = new LinkedHashSet<String>();
    Set<String> indentFieldsNameSet = new LinkedHashSet<String>();
 
View Full Code Here


      }else{
        UUID templateId = DataAccessFactory.getInstance().createUUID(XMLUtil.getAttribute(templateNode, "id").toString());
        Template template = TemplateCache.getInstance().get(templateId);
       
        Element templateElement = (Element)filterDoc.getElementsByTagName("template").item(0);
        SegmentTagBase templateSegment = createSegmentTagBase(templateElement,das ,template);
        if (templateSegment.indentFieldsName != null && templateSegment.indentFieldsName.length > 0) {
          return templateSegment.indentFieldsName[0];
        }
       
      }
View Full Code Here

  }
 
  public static String[] getTemplateDisplayFieldsName(Document filterDocument,DataAccessSession das , Template template)
  {
    Element templateNode = (Element)filterDocument.getElementsByTagName("template").item(0);
    SegmentTagBase templateSegment = createSegmentTagBase(templateNode,das ,template);
    return templateSegment.displayFieldsName;
  }
View Full Code Here

TOP

Related Classes of com.sogou.qadev.service.cynthia.bean.SegmentTagBase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.