Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
9answers
2k views

Best practices for developing larger JavaScript applications

Having a strong background in Java/C++ i wonder if it is possible to develop a somewhat larger JavaScript application without having to cut back on quality. Any hints are appreciated regarding: ...
30
votes
4answers
4k views

Is there a pattern for initializing objects created via a DI container

I am trying to get Unity to manage the creation of my objects and I want to have some initialization parameters that are not known until run-time: At the moment the only way I could think of the way ...
6
votes
10answers
4k views

Static Methods in an Interface/Abstract Class

First off, I understand the reasons why an interface or abstract class (in the .NET/C# terminology) cannot have abstract static methods. My question is then more focused on the best design solution. ...
5
votes
2answers
228 views

How to design my C# jQuery API such that it isn't confusing to use?

I'm making a jquery clone for C#. Right now I've got it set up so that every method is an extension method on IEnumerable<HtmlNode> so it works well with existing projects that are already using ...
5
votes
1answer
442 views

Designing an Python API: Fluent interface or arguments

I'm playing around with a simple port of the Protovis API to Python. Consider the simple bar chart example, in Javascript: var vis = new pv.Panel() .width(150) .height(150); ...
5
votes
2answers
331 views

C++ DAL - Return Reference or Populate Passed In Reference

[EDIT 1 - added third pointer syntax (Thanks Alex)] Which method would you prefer for a DAL and why out of: Car& DAL::loadCar(int id) {} bool DAL::loadCar(int id, Car& car) {} Car* ...
4
votes
1answer
61 views

What would be the benefit of an interface which implies a certain implementation?

I'm looking at this: public interface IAjaxCallbackEventHandler : ICallbackEventHandler { string CallbackResponse { get; set; } } } So pages implement this interface and end up ...
4
votes
4answers
471 views

Plug In Design for .NET App

I’m looking at rewriting a portion of our application in C# (currently legacy VB6 code). The module I am starting with is responsible for importing data from a variety of systems into our database. ...
2
votes
1answer
105 views

Dedicating a field in arbitrary class types for “external use”

My container needs to store a little information about its elements. Normally, I store this separately from elements. However, I'd like to give users possibility to conserve memory by dedicating a ...
2
votes
4answers
127 views

Relation between web design, interface design and web development in the professional world?

I'm a student from france, and I'm passionated by building websites. I don't care if it's about interface design, web design or web development, I love them all! Although these domains are very ...
2
votes
2answers
109 views

What's the best way to handle multiple search options?

This is probably a question that has been around for 20 years, but I'm going to ask anyway. I have a screen that has multiple search options. Some can be combined. Some are exclusive. Ex: Search ...
2
votes
3answers
1k views

How to call Events in Interfaces C#?

So i have a design problem. I have a mouse class that has delegates and events. ie MouseButtonPressed, MouseMoved. and such that are getting called by a state engine. What i want to have happen is ...
2
votes
4answers
395 views

What is the best way to pass data between a MainFrame (or Main Dialog) and a Modal Dialog?

I need a modal dialog to gather some user input. I then need the same data to be consumed by the application MainFrame. Usually my Modal Dialog would have a pointer to some DataType able to store ...
1
vote
0answers
55 views

Overriding interface definitions [closed]

Possible Duplicate: Why is it impossible to override a getter-only property and add a setter? Let's say that I got the following interfaces: public interface IMessage { bool KeepAlive ...
1
vote
3answers
89 views

How to replace enumeration with something like interface ID?

Please consider the following interfaces: interface IFile { // Members }; interface IAudioFile : IFile { // Members }; interface IVideoFile : IFile { // Members }; enum ContentType { ...
1
vote
4answers
638 views

Tabs vs. Home Screen For Android Application?

I have an Android application that I've been working on, and it's implemented using tabs to separate the different functions that it performs. See the article here The above article talks about how ...
1
vote
2answers
184 views

Is this a good interface for persistent state?

I'm developing a game that maintains its information in a class called WorldState. Each GameObject in the world (trees, zombies, the player, health packs, etc) is composed of three objects: ...
1
vote
3answers
446 views

High level design pattern for image editing tools

I have recently begin creating an image editing tool which will cater to a very specific need. This is as much for the people who are going to use it as it is for my own entertainment. however, I ...
1
vote
6answers
801 views

What do *you* use C++ ABC constructors for?

What do people here use C++ Abstract Base Class constructors for in the field? I am talking about pure interface classes having no data members and no non-pure virtual members. Can anyone ...
1
vote
1answer
2k views

What's a good Systems Interface Specification template?

A client has a number of disparate systems that they are planning to link together and have asked for a set of system interface specifications that would document the data and protocols used to ...
0
votes
0answers
65 views

How to extend IWICFormatConverter to support YCbCr to RGB with custom reference white point values?

This is a question about Windows Imaging Component. This question is about the interface design only. I already know the calculations from LibTIFF, SO, fourCC and Wikipedia. I need to implement the ...
0
votes
2answers
287 views

Best practices when using an interface

Many times when designing interfaces I keep running into the same situation. The situation is where certain implementations using an interface require particular parameters in the interface while ...
0
votes
2answers
66 views

Return a vector knowing it will always contain a single record in order to be consistent with the rest of the interface?

I'm writing a little address book application and have a design dilemna regarding the interface for the data source / backend. I have the following abstract base class for data source classes: class ...