Examples of ModuleInfoBean


Examples of open.dolphin.infomodel.ModuleInfoBean

        /**
         * 葉ノードの場合は StampInfo の name を変更する
         * そうでない場合は新しい文字列を userObject に設定する
         */
        if (node.isLeaf()) {
            ModuleInfoBean info = (ModuleInfoBean) node.getUserObject();
            info.setStampName(newString);

        } else {
            node.setUserObject(newString);
        }

View Full Code Here

Examples of open.dolphin.infomodel.ModuleInfoBean

         // ASP Tree なのでエディタから発行を無視する
        if (name.equals("エディタから発行...") && (id == null) && (role.equals("p")) ) {
            return;
        }
       
        info = new ModuleInfoBean();
        info.setStampName(name);
        info.setStampRole(role);
        info.setEntity(entity);
        if (editable != null) {
            info.setEditable(Boolean.valueOf(editable).booleanValue());
View Full Code Here

Examples of open.dolphin.infomodel.ModuleInfoBean

     * スタンプを複製して返す。bundle もコピーされる。ただし ClaimItem は空。
     * @return
     */
    private ModuleModel createModuleModel(ModuleModel src) {
       
        ModuleInfoBean srcModuleInfo = src.getModuleInfo();
        BundleMed srcBundle = (BundleMed) src.getModel();
       
        // 複製
        ModuleModel dist = new ModuleModel();
       
        BundleMed distBundle = createBundleMed(srcBundle);
        dist.setModel(distBundle);
       
        ModuleInfoBean distModuleInfo = dist.getModuleInfo();
        distModuleInfo.setEntity(srcModuleInfo.getEntity());
        distModuleInfo.setStampRole(srcModuleInfo.getStampRole());
        distModuleInfo.setStampName(srcModuleInfo.getStampName());

        return dist;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.