Questions tagged [modularization]

The aim of the software modularization process is to partition a software system into subsystems to provide an abstract view of the architecture of the software system, where a subsystem is made up of a set of software artifacts which collaborate with each other to implement a high-level attribute or provide a high-level service for the rest of the software system.

Knowing the software architecture, software developers can perform fit-gap analysis and estimate the costs and risks of the required changes, and also will be able to determine which components can be reused. However, for large and complex software systems, the software modularization cannot be done manually, owing to the large number of interactions between different artifacts, and the large size of the source code. Hence, a fully automated or semi-automated tool is needed to perform software modularization.

134 questions
0
votes
2 answers

Embedding PHP include statements within a string that gets echoed

I've been trying to clean up my site by defining my site structure as php string variables and then echoing those variables out. This condenses all of my site structure down to five lines with an article in between the echo statements. My page looks…
0
votes
1 answer

R Shiny, DT::replaceData in callModule not working

In an R Shiny application, I am trying to use DT::replaceData to update the data to show with current state (e.g. filtering) preserved. While it works with a simple shiny app, it does not when I modularize the app and invoke from callModule. In the…
Kota Mori
  • 6,510
  • 1
  • 21
  • 25
0
votes
2 answers

Modularizing Angular 5 App

I’m trying to split an Angular 5 app into modules. The working code is this (the relevant code): app.module.ts: import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FooterComponent } from…
Danubius
  • 59
  • 5
0
votes
1 answer

CharConverter unknown errors

I'm creating a program here are the specifications: Create a CharConverter class that performs various operations on strings. It should have the following two public member functions to start with. The uppercase member function accepts a string…
Kenny Freeman
  • 27
  • 1
  • 10
0
votes
0 answers

How to inject in module by dagger-android, module has no application

public class BaseApplication extends DaggerApplication { @Override protected AndroidInjector applicationInjector() { AppComponent appComponent = DaggerAppComponent.builder() …
KingJ
  • 1
  • 1
0
votes
1 answer

Perform merge between views of two or more modules

I have a Phalcon PHP modular application. I am making an administrative interface to control which modules should be used in the system. One module controls the application's default interface, while the other modules add functionalities. I have the…
0
votes
1 answer

UITesting with Multiple XCTestCase Class

I am writing UITest cases for my Project. So I want to have multiple files either subclassed to XCTestCase or subclassed to my Other Test Classes. Whenever I create a such File, I am getting the following error. duplicate symbol…
0
votes
1 answer

INCLUDEs are not copied during program COPY

I copy a program SAPBC414T_BOOKINGS_01 to new name ZSAPMZ_BOOKINGS_01 in a new package ZBC400_01. I select all items including INCLUDEs. SAP asks me to rename the includes and I rename them as shown here: However, after copying I open my program…
gram77
  • 361
  • 1
  • 12
  • 30
0
votes
1 answer

How to Entity Framework configuration "Self Contained" in Module

I'm building a set of components, let's call them services, that are using entity framework to access their data. Those components are designed to be used across several projects in the same solution. We would like to have these components as much…
selganor
  • 79
  • 11
0
votes
1 answer

Adapters and modularization without transitive dependencies

I have run into the following situation a couple of times and I cannot find a fully satisfying solution: I am developing a Java application using OSGi and, following OSGi's best practices, it is highly modularized. Here's an extract of some of my…
Alix
  • 927
  • 7
  • 21
0
votes
1 answer

Adding Express 4 to a modularized Angular ui-router app

I am at the point where I have to add Express 4 to my modularized AngularJS ui-router app. Previously I used this tutorial to modularize my Angular app. I currently have all the modules for my AngularJS app in the src/app/ directory like so: $ tree…
user883807
0
votes
2 answers

How to structure/modularize an application with a cross-module search?

I'm developing a Zend Framework 2 application, that should provide: a search in projects with a result list of projects a single project view a search in images with a result list of images (every image belongs to a project) Also there are two…
automatix
  • 14,018
  • 26
  • 105
  • 230
0
votes
2 answers

Common Favorite Band Python

Hello I was given a problem where I had to take a list of lists and find individual bands within those lists and see if they all have a common favorite band. If so I am supposed to output true. I need to follow this method of programming where I…
0
votes
1 answer

interface between two modules zend Framework

is there a way to create interfaces between 2 modules so that they can interact with one another? im working on zend framework2. Many thanks.
0
votes
1 answer

A JavaScript concatenator to help data hiding under modularization?

I previously run into the problems of data hiding under modularization in JavaScript. Please see the links below: Module pattern- How to split the code for one module into different js files? JavaScript - extract out function while keeping it…
Boyang
  • 2,520
  • 5
  • 31
  • 49
1 2 3
8
9