├── .gitignore ├── CollectionModuleTemplate └── <%module%>Module │ ├── ApplicationLogic │ └── Interactor │ │ ├── <%prefix%><%module%>Interactor.h │ │ ├── <%prefix%><%module%>Interactor.m │ │ └── <%prefix%><%module%>InteractorIO.h │ ├── ModuleInterface │ ├── <%prefix%><%module%>ModuleDelegate.h │ └── <%prefix%><%module%>ModuleInterface.h │ └── UserInterface │ ├── DataSource │ ├── <%prefix%><%module%>DataSource.h │ └── <%prefix%><%module%>DataSource.m │ ├── Presenter │ ├── <%prefix%><%module%>Presenter.h │ └── <%prefix%><%module%>Presenter.m │ ├── View │ ├── <%prefix%><%module%>Controller.h │ ├── <%prefix%><%module%>Controller.m │ ├── <%prefix%><%module%>VC.h │ ├── <%prefix%><%module%>VC.m │ ├── <%prefix%><%module%>ViewInterface.h │ ├── Cell │ │ ├── <%prefix%><%module%>Cell.h │ │ ├── <%prefix%><%module%>Cell.m │ │ ├── <%prefix%><%module%>CellViewModel.h │ │ └── <%prefix%><%module%>CellViewModel.m │ └── View │ │ ├── <%prefix%><%module%>View.h │ │ └── <%prefix%><%module%>View.m │ └── Wireframe │ ├── <%prefix%><%module%>Wireframe.h │ └── <%prefix%><%module%>Wireframe.m ├── LICENSE ├── ModuleTemplate └── <%module%>Module │ ├── ApplicationLogic │ └── Interactor │ │ ├── <%prefix%><%module%>Interactor.h │ │ ├── <%prefix%><%module%>Interactor.m │ │ └── <%prefix%><%module%>InteractorIO.h │ ├── ModuleInterface │ ├── <%prefix%><%module%>ModuleDelegate.h │ └── <%prefix%><%module%>ModuleInterface.h │ └── UserInterface │ ├── Presenter │ ├── <%prefix%><%module%>Presenter.h │ └── <%prefix%><%module%>Presenter.m │ ├── View │ ├── <%prefix%><%module%>VC.h │ ├── <%prefix%><%module%>VC.m │ └── <%prefix%><%module%>ViewInterface.h │ └── Wireframe │ ├── <%prefix%><%module%>Wireframe.h │ └── <%prefix%><%module%>Wireframe.m ├── README.md └── TableModuleTemplate └── <%module%>Module ├── ApplicationLogic └── Interactor │ ├── <%prefix%><%module%>Interactor.h │ ├── <%prefix%><%module%>Interactor.m │ └── <%prefix%><%module%>InteractorIO.h ├── ModuleInterface ├── <%prefix%><%module%>ModuleDelegate.h └── <%prefix%><%module%>ModuleInterface.h └── UserInterface ├── DataSource ├── <%prefix%><%module%>DataSource.h └── <%prefix%><%module%>DataSource.m ├── Presenter ├── <%prefix%><%module%>Presenter.h └── <%prefix%><%module%>Presenter.m ├── View ├── <%prefix%><%module%>Controller.h ├── <%prefix%><%module%>Controller.m ├── <%prefix%><%module%>VC.h ├── <%prefix%><%module%>VC.m ├── <%prefix%><%module%>ViewInterface.h └── View │ ├── <%prefix%><%module%>Cell.h │ ├── <%prefix%><%module%>Cell.m │ ├── <%prefix%><%module%>CellViewModel.h │ └── <%prefix%><%module%>CellViewModel.m └── Wireframe ├── <%prefix%><%module%>Wireframe.h └── <%prefix%><%module%>Wireframe.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>Cell.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>Cell.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>CellViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>CellViewModel.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>CellViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/Cell/<%prefix%><%module%>CellViewModel.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>View.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>View.m -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h -------------------------------------------------------------------------------- /CollectionModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/CollectionModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h -------------------------------------------------------------------------------- /ModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/ModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/README.md -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>Interactor.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/ApplicationLogic/Interactor/<%prefix%><%module%>InteractorIO.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleDelegate.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/ModuleInterface/<%prefix%><%module%>ModuleInterface.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/DataSource/<%prefix%><%module%>DataSource.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/Presenter/<%prefix%><%module%>Presenter.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>Controller.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>VC.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/<%prefix%><%module%>ViewInterface.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>Cell.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>Cell.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>CellViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>CellViewModel.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>CellViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/View/View/<%prefix%><%module%>CellViewModel.m -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.h -------------------------------------------------------------------------------- /TableModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anodamobi/ANViperGenerator/HEAD/TableModuleTemplate/<%module%>Module/UserInterface/Wireframe/<%prefix%><%module%>Wireframe.m --------------------------------------------------------------------------------