Search in sources :

Example 1 with TableDVO

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO in project Gargoyle by callakrsos.

the class ProgramSpecWordTemplate method headerPage3.

/**
	 * 
	 * 전반적인 메소드에 대한 정보를 기록. 본문 요약 정보
	 * 
	 * @param msWord
	 * @param svo
	 * @throws ParseException
	 */
public void headerPage3(ProgramSpecSVO svo) {
    // [START] #### 선언부 테이블에 전체적인 내용 기술 ####
    List<List<String>> list = new ArrayList<List<String>>();
    // 0 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("프로그램 사양서");
        list.add(arr);
    }
    // 1 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("a.시스템 명");
        arr.add(" - ");
        arr.add("b.시스템");
        arr.add(" - ");
        arr.add("c.서브시스템");
        arr.add(getSubSystemName(svo.getUserSourceMetaDVO().getProjectName(), svo.getUserSourceMetaDVO().getPackages()));
        list.add(arr);
    }
    // 2 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("d.프로그램ID");
        arr.add(svo.getUserSourceMetaDVO().getSimpleFileName());
        arr.add("e.작성자");
        arr.add(svo.getUserSourceMetaDVO().getUserPcName());
        arr.add("f.작성일");
        arr.add(DateUtil.getCurrentDateString("yyyy-MM-dd"));
        list.add(arr);
    }
    // 3 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("g.프로그램명");
        // 프로그램명정의
        String programName = svo.getUserSourceMetaDVO().getProgramName();
        arr.add(programName == null ? "" : programName);
        list.add(arr);
    }
    // 4 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("h.개발 유형");
        arr.add(svo.getFile().getFileType().toString());
        arr.add("i.프로그램 유형");
        arr.add(" - ");
        list.add(arr);
    }
    // 5 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("j. 프로그램 개요");
        arr.add(" - ");
        list.add(arr);
    }
    XWPFTable table = addToTable(list);
    mergeCellHorizon(table, 0, 0, 6);
    mergeCellHorizon(table, 3, 1, 6);
    mergeCellHorizon(table, 4, 1, 2);
    mergeCellHorizon(table, 4, 3, 6);
    mergeCellHorizon(table, 5, 1, 6);
    // [END] #### 선언부 테이블에 전체적인 내용 기술 ####
    // 공백
    addBreak();
    addText("■. 화면/Report/비즈니스 로직 설계", MSWord.H4, true, false, false);
    addBreak();
    addText("■ Object  리스트", true, false, false);
    List<List<String>> objList = new ArrayList<List<String>>();
    // 0 row 테이블 헤더.
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("순번 ");
        arr.add("Object ID ");
        arr.add("주요 기능 ");
        arr.add("신규/변경 ");
        objList.add(arr);
    }
    // [START] #### 데이터부 ####
    List<MethodDVO> methodDVOList = svo.getMethodDVOList();
    for (int i = 0; i < methodDVOList.size(); i++) {
        MethodDVO methodDVO = methodDVOList.get(i);
        if (methodDVO == null || methodDVO.getMethodName() == null) {
            continue;
        }
        ArrayList<String> arr = new ArrayList<String>();
        // seq
        arr.add(String.valueOf((i + 1)));
        // 메소드명
        arr.add(methodDVO.getMethodName());
        // 주요기능-- Main펑션이 빈경우 Description으로 설정됨.
        arr.add(ValueUtil.isEmpty(methodDVO.getMainFunction()) ? methodDVO.getDescription() : methodDVO.getMainFunction());
        // 신규 or 변경
        arr.add(methodDVO.getIsNewOrChg());
        objList.add(arr);
    }
    // [END] #### 데이터부 ####
    addToTable(objList);
    addBreak();
    // [START] #### Object 선언부(패키지) ####
    addText("■ Object  선언", true, false, false);
    ImportsDVO importsDVO = svo.getImportsDVO();
    if (importsDVO != null) {
        List<String> imports = importsDVO.getImports();
        doNotEmptyTextureScope(imports, new ITextureBlock() {

            @Override
            public void doScope(String text) {
                addText(text);
            }

            @Override
            public void emptyThen() {
                addText("N/A");
            }
        });
    } else {
        addText("디폴트 (N/A)");
    }
    // [END] #### Object 선언부(패키지) ####
    addBreak();
    // [START] #### ObjectID (Object 리스트에 기술된 Object ID와 일치하게 기술함) ####
    addText("■ Object ID (Object 리스트에 기술된 Object ID와 일치하게 기술함) ", true, false, false);
    for (int i = 0; i < methodDVOList.size(); i++) {
        MethodDVO methodDVO = methodDVOList.get(i);
        if (methodDVO == null || methodDVO.getMethodName() == null) {
            continue;
        }
        String visivility = methodDVO.getVisivility();
        String methodName = methodDVO.getMethodName();
        String returnType = methodDVO.getReturnType();
        String parameters = methodDVO.getParameters();
        addText(new StringBuffer().append((i + 1)).append(". ").append(visivility).append(" ").append(returnType).append(" ").append(methodName).append(" ").append(parameters).toString());
    }
    // [END] #### (Object 리스트에 기술된 Object ID와 일치하게 기술함) ####
    addBreak();
    // [START] #### Table 리스트(프로그램에서 사용되는 Table을 모두 기술) ####
    addText("  ○ Table 리스트(프로그램에서 사용되는 Table을 모두 기술)", true, false, false);
    List<List<String>> tableList = new ArrayList<List<String>>();
    // 0 row 헤더부분 기술
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("Table ID");
        arr.add("Table 명");
        arr.add("CRUD");
        tableList.add(arr);
    }
    List<TableDVO> tableDVOList = svo.getTableDVOList();
    int DEFAULT_ROW = 4;
    // /
    if (tableDVOList != null) {
        for (TableDVO dvo : tableDVOList) {
            ArrayList<String> arr = new ArrayList<String>();
            arr.add(dvo.getTableId());
            arr.add(dvo.getTableName());
            arr.add(dvo.getCrud());
            tableList.add(arr);
        }
    }
    // 여유 공간이 남는다면 빈공간을 추가한다.
    int loopCnt = DEFAULT_ROW;
    if (tableDVOList != null) {
        loopCnt = DEFAULT_ROW - tableDVOList.size();
    }
    for (int i = 0; i < loopCnt; i++) {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add(" ");
        arr.add(" ");
        arr.add(" ");
        tableList.add(arr);
    }
    // /
    addToTable(tableList);
// [END] #### Table 리스트(프로그램에서 사용되는 Table을 모두 기술) ####
}
Also used : ImportsDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.ImportsDVO) XWPFTable(org.apache.poi.xwpf.usermodel.XWPFTable) ArrayList(java.util.ArrayList) ITextureBlock(com.kyj.fx.voeditor.visual.words.spec.auto.msword.interfaces.ITextureBlock) TableDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO) ArrayList(java.util.ArrayList) List(java.util.List) MethodDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)

Example 2 with TableDVO

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO in project Gargoyle by callakrsos.

the class ProgramSpecUtil method createDefault.

public static boolean createDefault(ProgramSpecSVO source, File targetFile) {
    boolean result = false;
    try {
        //			IProgramSpecFile abPFile = source.getFile();
        //			// 확장자까지 포함된 파일명
        //			String simpleFileName = source.getUserSourceMetaDVO().getSimpleFileName();
        //			// 확장자를 제거하고 워드문서가 생성될 파일명 작성
        //			String fileName = "(" + abPFile.getSourceFileType().toString() + ")(사양서)"
        //					+ simpleFileName.substring(0, simpleFileName.indexOf('.')) + ".docx";
        //			// 풀 경로 설정.( 유저의 데스크탑에 저장됨.)
        //			String docFile = "";
        //			if (targetFile == null)
        //				docFile = System.getProperty("user.home") + File.separator + "Desktop" + File.separator + fileName;
        //			else
        //				docFile = targetFile.getAbsolutePath();
        IProgramSpecFile newInstance = new IProgramSpecFile() {

            @Override
            public SOURCE_FILE_TYPE getSourceFileType() {
                return SOURCE_FILE_TYPE.BIZ;
            }

            @Override
            public InspectorSourceMeta getInspectorSourceMeta() {
                // TODO Auto-generated method stub
                return null;
            }

            @Override
            public String getFileName() {
                return targetFile.getName();
            }

            @Override
            public FILE_TYPE getFileType() {
                // TODO Auto-generated method stub
                return FILE_TYPE.JAVA;
            }

            @Override
            public List<TableDVO> getTableList() {
                // TODO Auto-generated method stub
                return Collections.emptyList();
            }
        };
        source.setFile(newInstance);
        ProgramSpecWordTemplate word = new ProgramSpecWordTemplate(targetFile.getAbsolutePath(), source);
        word.write();
        word.close();
        LOGGER.debug("사양서 생성 완료.[ " + source + " ]");
        result = true;
    } catch (Exception e1) {
        e1.printStackTrace();
    }
    return result;
}
Also used : TableDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO) ProgramSpecWordTemplate(com.kyj.fx.voeditor.visual.words.spec.auto.msword.template.ProgramSpecWordTemplate) IProgramSpecFile(com.kyj.fx.voeditor.visual.words.spec.auto.msword.model.IProgramSpecFile) ProgramSpecSourceException(com.kyj.fx.voeditor.visual.exceptions.ProgramSpecSourceException)

Aggregations

TableDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO)2 ProgramSpecSourceException (com.kyj.fx.voeditor.visual.exceptions.ProgramSpecSourceException)1 ITextureBlock (com.kyj.fx.voeditor.visual.words.spec.auto.msword.interfaces.ITextureBlock)1 IProgramSpecFile (com.kyj.fx.voeditor.visual.words.spec.auto.msword.model.IProgramSpecFile)1 ProgramSpecWordTemplate (com.kyj.fx.voeditor.visual.words.spec.auto.msword.template.ProgramSpecWordTemplate)1 ImportsDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.ImportsDVO)1 MethodDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 XWPFTable (org.apache.poi.xwpf.usermodel.XWPFTable)1