use of org.apache.poi.xwpf.usermodel.XWPFTable 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을 모두 기술) ####
}
use of org.apache.poi.xwpf.usermodel.XWPFTable in project Gargoyle by callakrsos.
the class ProgramSpecWordTemplate method methodDetail.
public void methodDetail(int seq, MethodDVO dvo) {
int DEFAULT_ROW = 4;
addText(seq + ". ".concat(dvo.getMethodName()), true, false, false);
// 전체 메소드에 대한 요약 정보 기술.
List<List<String>> methodList = new ArrayList<List<String>>();
// 0 row 메소드명 기술
{
ArrayList<String> arr = new ArrayList<String>();
arr.add("Method 명 ");
arr.add(dvo.getMethodName());
methodList.add(arr);
}
// 1 row 메소드 유형 기술
{
ArrayList<String> arr = new ArrayList<String>();
arr.add("Method 유형 ");
arr.add(dvo.getLevel());
methodList.add(arr);
}
// 2 row 부턴 메소드 파라미터 기술.
{
ArrayList<String> arr = new ArrayList<String>();
arr.add("Parameters");
arr.add("Parameter");
arr.add("유형(M/O)");
arr.add("Type");
arr.add("Description");
methodList.add(arr);
}
List<MethodParameterDVO> mList = dvo.getMethodParameterDVOList();
if (mList != null) {
for (MethodParameterDVO m : mList) {
ArrayList<String> arr = new ArrayList<String>();
arr.add("");
arr.add(m.getParameter());
arr.add(m.getParameterType());
arr.add(m.getType());
arr.add(m.getDescription());
methodList.add(arr);
}
}
// 여유 공간이 남는다면 빈공간을 추가한다.
int loopCnt = DEFAULT_ROW;
int mListSize = mList == null ? 0 : mList.size();
if (mList != null) {
loopCnt = DEFAULT_ROW - mListSize;
}
for (int i = 0; i < loopCnt; i++) {
ArrayList<String> arr = new ArrayList<String>();
arr.add("");
arr.add("");
arr.add("");
arr.add("");
arr.add("");
methodList.add(arr);
}
XWPFTable table = addToTable(methodList);
mergeCellHorizon(table, 0, 1, 4);
mergeCellHorizon(table, 1, 1, 4);
mergeCellsVertically(table, 0, 2, ((loopCnt < 0) ? (mListSize + 2) : (mListSize + loopCnt + 2)));
if (dvo.getFlow() != null) {
String[] split = dvo.getFlow().split("\n");
for (String c : split) {
// " "를 넣어주면 /t 기능이 msword상에서 적용됨.
addText(" " + c);
}
}
addBreak();
}
use of org.apache.poi.xwpf.usermodel.XWPFTable in project Gargoyle by callakrsos.
the class ReadDoc method main.
/**
* @작성자 : KYJ
* @작성일 : 2016. 1. 25.
* @param args
*/
public static void main(String[] args) {
String filesname = "(APP)(사양서)AprvSampleApp.docx";
try {
XWPFDocument doc = new XWPFDocument(new FileInputStream(filesname));
doc.getBodyElements().forEach(b -> {
BodyElementType elementType = b.getElementType();
if (BodyElementType.TABLE.name().equals(elementType.name())) {
XWPFTable table = (XWPFTable) b;
System.out.println(table);
} else if (BodyElementType.PARAGRAPH.name().equals(elementType.name())) {
System.out.println(b);
} else if (BodyElementType.CONTENTCONTROL.name().equals(elementType.name())) {
System.out.println(b);
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
Aggregations