Tagged Questions

2
votes
1answer
7 views

Guidelines/principles for package and component design.

Alright, our visual studio solution grows big in terms of the number of projects in it. Except for things that are obvious, I want to check whether the way it is now is what it ha …
1
vote
4answers
85 views

Liskov substitution principle - no overriding/virtual methods?

My understanding of the Liskov substitution principle is that some property of the base class that is true or some implemented behaviour of the base class, should be true for the d …
1
vote
10answers
246 views

Well-established scientific truths about software engineering [closed]

Exact Duplicate: Laws of Computer Science and Programming Are you aware of any well-established scientific truths about software engineering?
-1
votes
1answer
32 views

How to design fully customizable modules? [closed]

Modules I created now is hard to modify, it works in one environment,but I need to pay greate effort to make it also work in another environment.
0
votes
1answer
20 views

Strong Link - Weak Link in software security

Give me an example on how I could apply the Strong Link - Weak Link principle in designing a security component for a piece of software. Is there such a concept of "weak" modules i …
0
votes
5answers
158 views

How such an important principle “OCP” will be the reason of massive code duplication practice?

OCP (Open/Closed Principle) is one of the SOLID principles. Which is says: ”Software Entities should be Open for Extension, but Closed for Modification.” It take me while to und …
10
votes
8answers
769 views

What is the Dependency Inversion Principle and why is it important?

What is the Dependency Inversion Principle and why is it important?
5
votes
1answer
114 views

Principles for Modeling CouchDB Documents

I have a question that I've been trying to answer for some time now but can't figure out: How do you design, or divide up, CouchDB documents? Take a Blog Post for example. The s …
1
vote
2answers
77 views

SOLID Liskov Substitution Principle

if i have something like class square : figure {} class triangle : figure {} does that mean that i should never ever use the square and triangle classes but only refer to figur …
7
votes
3answers
554 views

Service Layers and Repositories

I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of w …
5
votes
9answers
465 views

What’s the rationale behind headers?

I don't quite understand the point of having a header; it seems to violate the DRY principle! All the information in a header is (can be) contained in the implementation.
7
votes
5answers
260 views

SOLID principles

can somebody explain/name me the priciples of SOLID development ?
0
votes
4answers
53 views

How does the design of JavaBeans square with information hiding?

Two semesters ago, I had a professor who said: Some of you have been told to always include setter and getter methods for all private instance variables. I say that this breaks …
18
votes
10answers
497 views

How do you define a Single Responsibility?

I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or c …
16
votes
17answers
2k views

Best Practices & Principles for GUI design

What is your best practical user-friendly user-interface design or principle? Please submit those practices that you find actually makes things really useful - no matter what - …

1 2 3 next
15 30 50 per page