コード例 #1
0
 public void loadLogicalArchitectureData(Element e) {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.setParseData(DomainElement.LOGICAL);
   pd.loadWorkspaceData(e);
 }
コード例 #2
0
 public Element getLogicalArchitectureData() {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.setParseData(DomainElement.LOGICAL);
   return pd.getWorkspaceData();
 }