从几个子目录中的发电机调度生成模型

时间:2014-04-30 08:08:20

标签: objective-c shell core-data mogenerator

我使用mogenerator从我的Core Data数据模型生成我的实体。

但我有很多生成的文件,我想在几个子目录中发送它们,如:

Human
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

Entities
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

目前,我只有人力和实体子目录来发送_ModelModel个文件。

每次使用mogenerator生成模型时,我都可以创建目录并拖放链接子目录中的每个文件,但我正在寻找更智能的解决方案来自动完成此过程。

我不知道mogenerator是否可以管理此内容,或者我是否需要使用脚本文件。

有什么建议吗?

更新:主要困难是我必须"链接"模型到子目录。例如:

ProductA类和ProductB类应放在同一目录中:Product

更新2

例如,我有一些模型要生成:

用户 接受者 AProduct(产品的抽象基类) ProductA(AP产品的子类) ProductB(AP产品的子类)

我想在子目录中发送这些类:

Human
  |
   ----> User
           |
            ----> User.h
           |
            ----> User.m
  |
   ----> Products
           |
            ----> AProduct.h
           |
            ----> AProduct.m
           |
            ----> ProductA.h
           |
            ----> ProductA.m
           |
            ----> ProductB.h
           |
            ----> ProductB.m

Entities
  |
   ----> User
           |
            ----> _User.h
           |
            ----> _User.m
  |
   ----> Products
           |
            ----> _AProduct.h
           |
            ----> _AProduct.m
           |
            ----> _ProductA.h
           |
            ----> _ProductA.m
           |
            ----> _ProductB.h
           |
            ----> _ProductB.m

0 个答案:

没有答案