Package open.dolphin.dto

Examples of open.dolphin.dto.DocumentSearchSpec


    public void getDocumentHistory() {

        if (start && extractionPeriod != null && extractionContent != null) {

            // 検索パラメータセットのDTOを生成する
            DocumentSearchSpec spec = new DocumentSearchSpec();
            spec.setKarteId(context.getKarte().getId())// カルテID
            spec.setDocType(extractionContent);      // 文書タイプ
            spec.setFromDate(extractionPeriod);      // 抽出期間開始
            spec.setIncludeModifid(showModified);    // 修正履歴
            spec.setCode(DocumentSearchSpec.DOCTYPE_SEARCH)// 検索タイプ
            spec.setAscending(ascending);

            DocInfoTask task = new DocInfoTask(context, spec, new DocumentDelegater());
            task.execute();
        }
    }
View Full Code Here

TOP

Related Classes of open.dolphin.dto.DocumentSearchSpec

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.