Object Oriented Analysis and Design
0
votes
0answers
20 views
Database layer design
I have design level question in one of my project.I'm working on a project in which I need to fetch some objects using REST. Say for example fetch Customers and show it in a list.
Following ...
0
votes
1answer
31 views
Can a managed bean extends a DTO
I have 2 classes (managed beans) in my business that of type X, the 2 classes merely have the same attributes except for 3 attributes, can i make a DTO contains all the attributes in the 2 beans and ...
0
votes
1answer
31 views
Appropriate way for business logic layer to deal with its neighbors?
Good morning, i have a use-case in my project that says that If the user isn't logged in to the application display a warning message to him and what determines if the user is logged in or not is a ...
0
votes
2answers
35 views
Is a entity class can return some other entity instance in OOAD?
I have two classes:
public class Car
{
private int id;
private String name;
private String vendor;
/* ... */
}
public class Garage
{
private int id;
private String name;
...
1
vote
4answers
63 views
OOAD Design issue
I have two tables: tblCustomer, tblProduct:
tblCustomer:
Id: Integer, auto-increament
Name: Varchar(30)
....
tblProduct
Id: Integer, auto-increament
Name: Varchar(50)
...
0
votes
4answers
83 views
Class Design issues
Currently, I have the following class design :
AnimalHandler (A base class for all animals)
TigerHandler extends AnimalHandler, LionHandler extends AnimalHandler, LeopardHandler extends ...
0
votes
1answer
48 views
VB .NET application re architecturing
I got to re-architect existing VB.NET application, current application is not developed considering Object Oriented Approach. so Customer find difficulty in maintaining it.
Is there any tool to get ...
1
vote
2answers
103 views
Recommended Design/Pattern if I have n number of conditions to handle
I have some conditions like-
List globalList = new ArrayList();
if(X.isExists)
globalList(new XBasedClass());
if(Y.isExists && Z.isExists)
globalList(new ZYBasedClass());
else ...
0
votes
1answer
21 views
What's the correct name for the data structure (object) representing collection of GPS tracks
I want to implement, for personal use, an object representing a structured collection of GPS data.
Currently, there are a lot of file formats to represent this data, all of them with some minor ...
-2
votes
1answer
56 views
Object Oriented Design on Simple Messaging System [closed]
I was trying to do object oriented design on the simple messaging system. I am not sure that I can come with good/best design. So I want some of the expert folks help me define sets of classes, ...
1
vote
1answer
93 views
Object oriented design pattern query
i went through different questions on SO and was trying to find out what is the best way to design an application .I found that somewhere it was written that we should make the object of the class if ...
1
vote
4answers
123 views
Builder Pattern : Why does the Director construct the object?
I am learning the Builder Pattern
In the above link (Java example), I noticed that the Builder offers interface to construct multiple components. Along with invoking them, we call the getProduct() ...
2
votes
1answer
136 views
classes before main and design issues in C++
PART 1: I have a very odd situation, where in, I have to get the constructors of several classes called before main() or as soon as it enters main(). There's another sub-system which needs that data ...
0
votes
2answers
69 views
Object-oriented programming and database management
I have been puzzled by this for a while now. My question is, how does object-oriented programming and database management work together? I can't seem to find much on how the two work together. I ...
0
votes
1answer
36 views
Representing product specifications
I need to extend my domain model: products may have different specifications. E.g. motherboard specs are different from monitor specs.
there are two entities:
public class Product {
public Guid ...
1
vote
2answers
37 views
When subclassing an object, what is the appropriate method to handle functions that don't make sense on the child?
Before I jump into the meat of the question, let me note that this is a purely theoretical query. I'm not interested in this for practical reasons, I'm interested in the underlying OOP theory on how ...
0
votes
1answer
82 views
violation of SOLID principles
suppose we have a class structure where the code is divided in two parts lets us say computer science and business, now this also further divides in terms of country also, say Indian (cs or MBA) ...
2
votes
0answers
59 views
Design pattern for a parent/master/host application controlling many sub-applications [closed]
QUESTION:
"Is there some architectural design-pattern where many independent applications are controlled by a parent (master, host) application, containing common information?"
BACKGROUND:
We are ...
0
votes
1answer
93 views
Is this PowerBuilder stats generation code appropriately object-oriented?
I am working on refactoring an existing application written in PowerBuilder and Java and which runs on Sybase EA Server (Jaguar). I am building a small framework to wrap around Jaguar API functions ...
0
votes
2answers
26 views
Best practice while representing a collection property doesn't have items
When collection property( of type "IList" or Array), should it be null when there are no elements OR should it be represented as an empty collection (i.e length is zero)
e.g.
public class Teacher
{
...
1
vote
3answers
89 views
MVC - Data transformation from one model to another?
In the Model View Controller pattern where should data transformation occur?
I have a Model that stores very specific mathematical data. I need to convert that data for a physics simulator(that only ...
0
votes
0answers
44 views
How to enforce encapsulation while using a mixed combination of similar libraries? [closed]
I have been trying to make a set of GPS-related classes and functions, and decided to use Pandas, although I still use Numpy arrays, because Numpy's feature set is obviously much more complete.
...
2
votes
1answer
53 views
What to write in this contract
I'm designing a academic decision support system. I have to write documentation for that project. The part I am stuck on is writing contracts.
I've a use case Generate custom reports.
The ...
0
votes
2answers
72 views
OOP Issue:How to convert an object into concrete object if the object is transfered via base object
My demo code is below:
class Base
{
}
class SubA:Base
{
private int propertyA;
public int PropertyA
{
get{return propertyA}
}
}
class SubB:Base
{
private ...
1
vote
2answers
723 views
uml-include or extend
I am trying to make a use case diagram for library management system. I have two actors admin and user.
Now, the admin has three functions manageCategories (of books like history, geography etc.) ...
1
vote
2answers
41 views
Copying an Object in different ways
I am looking for design principles/patterns to copy an object in different ways. For example, I have the following options to copy an object of type ACCOUNT class.
1) Clone Exactly
2) Clone All ...
3
votes
3answers
81 views
Building a structure/object in a place other than the constructor
I have different types of objects representing the same business entity.
UIObject, PowershellObject, DevCodeModelObject, WMIObject all are different representation to the same entity.
So say if the ...
-3
votes
2answers
91 views
C# abstract class and covariant [closed]
i have some code like this:
class DataFilter
{
List<Animal> animals=null;
public function1(string TypeOfData)
{
if(TypeOfData=="cat"){//get cats from database and do ...
4
votes
2answers
161 views
Turning sequential cohesion into functional cohesion?
As described on this website,
A module with (only) procedural cohesion is one supporting different and possibly unrelated activities, in which control passes from one activity to the next. ...
0
votes
1answer
425 views
Difference between OOAD and UML?
I am new to software field. I don't know difference between OOAD and UML. Can anyone suggest tutorials to learn about OOAD.
1
vote
2answers
168 views
Handling client/server messages?
From my client/server I receive serialized data, once the data is deserialized, it goes into a command handler where receivedData.Action is the ClientMessage:
...
0
votes
2answers
38 views
How to design Uncategorized post for blog system
I have 3 tables:
Post
Category
PostCategory (many to many relation table)
It works fine when user select one or more categories for the post. But one scenario is that when the user select none of ...
3
votes
3answers
341 views
DDD - Duplication between service layer and repositories
I've worked on several applications that try to adhere to DDD principles, I noticed that we end up with situations where there is duplication between the Service Layer and the repositories that feels ...
4
votes
2answers
97 views
PHP Abstract Method versus Default Method
I notice that when I define a method as abstract, the signature of child classes needs to be compatible with it. This robs me of an opportunity to use the type checking in the child class' signature.
...
2
votes
1answer
116 views
Acheive strategy pattern when we have different return type
I have SaveManager Abstract class and my concrete classes TVSaveManager, DataSaveManager and VoiceSaveManager implementing SaveManager Abstract class.
List<SaveManager> lstPrdSaveManager;
...
0
votes
2answers
836 views
OOAD vs Design Patterns -confused
I picked up two HEAD first books, OOAD and Design Patterns. I am very confused when I started reading the Design Patterns.
Here are my basic doubts:
Is design pattern applicable only to Object ...
0
votes
4answers
137 views
What is the difference between procedural code and Domain Driven Design style code?
I am going through Domain Driven Design(DDD) techniques and I am feeling like I didn't understand it well yet.
DDD suggests putting the business logic(not infrastructure stuff like persistence, ...
0
votes
3answers
72 views
How to design a scenario where one subscriber depend on other?
In my application, I have a scenario where if a change occurs on a particular module, it has to be notified to few other modules. I thought an observer pattern would fit here, by keeping the module ...
1
vote
2answers
137 views
Issue in using Composition for “is – a “ relationship
I have system being developed for an HR system. There are Accountant employees and Programmer employees. For the first month of joining the company, the employee is not given any role. One employee ...
0
votes
2answers
64 views
Design suggestion in OOP
Problem
An Organization can have 1 or more Credential's.
There can be 1 Credential for each of the deployment environment
like DEV, TEST, UAT, PROD etc.
The Credential can be for UI or for ...
0
votes
2answers
98 views
OO design and hibernate
I have tried to model the job portal use case as in class diagram below. I have made Skill entity as shareable by both job as well as job seeker hoping to reuse.
I have revised my oo design since I ...
1
vote
3answers
252 views
Clean Code: Dependency Injection forces procedural code, how to refactor
I have the below classes:
class Validator {
private final SchemaFetcher schemaFetcher;
@Inject
Validator(SchemaFetcher schemaFetcher) {...}
}
class DatabaseSchemaFetcher ...
0
votes
1answer
72 views
Implementing Universal Data Models in Object Oriented way?
I have a UDM (Universal Data Model) taken out of LEN SILVESTON’s book which I would like to implement as an object oriented design in C Sharp to model PARTIES, PERSONS & ORGANIZATIONS.
...
1
vote
1answer
92 views
I want to implement an interface for a search class what is the best approach to implement an interface?
I want to have a search class with several different options in it, my search class should be able to filter results in different ways such as :
getX()
getY()
getZ()
getK()
above X,Y,Z,K are my ...
1
vote
3answers
59 views
Simple domain objects attribute values
Let's say you've got a domain model class for a Song. Song's have a tempo attribute (an int) that should always be a positive number. Should this requirement be part of the domain model or externally ...
3
votes
2answers
276 views
Composite of Commands Design Pattern
Does anyone have a good example in Ruby of using a Composite of Commands? It is a design pattern hybrid that I have seen mentioned in various Design Patterns literature which sounds quite powerful, ...
1
vote
4answers
130 views
Should Interface implementations be independent
I have come across some legacy code that has raised all my heckles as an Object Oriented Programmer.
Here's the pattern used often:
An interface has two implementations and one implementation calls ...
0
votes
1answer
76 views
better way of writing code [closed]
Is this a better approach, in terms of code reuse, code modification?
I may need to change paymentDao.savePayment() method in many controller files when I need to add a new parameter to the ...
5
votes
4answers
335 views
In some Java code, why does the class Deck extend the Card class?
I am reading some code in Java, which I am not familiar with, but it seems weird that if a class is Deck (for a deck of cards), it already has an instance variable of an array of Cards, so why does ...
-2
votes
4answers
119 views
When there is a class Car, should a car that is convertible subclass Car or not? [closed]
Say, if in our object design, there is already a Car class, and now there are some cars objects that convertibles.
We can define another class Convertible and subclass Car, but then let's say, we ...



