Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
4answers
587 views

API design and jQuery

I have often heard that jQuery has made some poor API decisions. Although jQuery is not my favourite library it's the library I've used most often and I find it hard to point out specific mistakes in ...
28
votes
14answers
3k views

How do you define a good or bad API?

Background: I am taking a class at my university called "Software Constraints". In the first lectures we were learning how to build good APIs. A good example we got of a really bad API function is ...
27
votes
8answers
2k views

Do fluent interfaces violate the Law of Demeter?

The wikipedia article about Law of Demeter says: The law can be stated simply as "use only one dot". However a simple example of a fluent interface may look like this: static void Main(string[] ...
16
votes
6answers
1k views

What's the point of DSLs / fluent interfaces

I was recently watching a webcast about how to create a fluent DSL and I have to admit, I don't understand the reasons why one would use such an approach (at least for the given example). The webcast ...
13
votes
4answers
532 views

Why would someone design a RESTful API with 'API' in the URI?

I just finished reading Restful Web Services and Nobody Understands REST or HTTP and am trying to design an API with a RESTful design. I've noticed a few patterns in API URI design: ...
13
votes
3answers
2k views

Why does String.valueOf(null) throw a NullPointerException?

according to the documentation, the method String.valueOf(Object obj) returns: if the argument is null, then a string equal to "null"; otherwise, the value of obj.toString() is returned. But how ...
13
votes
4answers
5k views

When do I define objective-c methods?

I'm learning Objective-C, and have a C/C++ background. In object-oriented C++, you always need to declare your method before you define (implement) it, even if it is declared in the parent class. ...
12
votes
1answer
504 views

Framework like JavaDoc for REST API documentation

I need to clean up our REST API documentation and add much more functionality to our API. Is there a good tool or framework for organizing our documentation? I use JavaDoc and it's great for ...
12
votes
3answers
1k views

GCC vs MS C++ compiler for maintaining API backwards binary compatibility

I came from the Linux world and know a lot of articles about maintaining backwards binary compatibility (BC) of a dynamic library API written in C++ language. One of them is "Policies/Binary ...
12
votes
5answers
533 views

How can I design a javascript API that allows for cross-domain scripting securely?

I like the way Google Maps' api is consumed, using a script include, but I'm worried: My api is "semi-private", that is, accessible over the internet but should allow for secure transmission of data ...
12
votes
12answers
951 views

What's missing in Cocoa?

If you could add anything to Cocoa, what would it be? Are there any features, major or minor, that you would say are missing in Cocoa. Perhaps there is a wheel you have had to invent over and over ...
12
votes
5answers
4k views

Why is DialogResult a nullable bool in WPF?

Can anyone think of a good explanation for the fact that result of a dialog is a nullable bool in WPF? This has always baffled me. In WinForms it was an enum type and that made a lot more sense to me. ...
11
votes
5answers
639 views

Best practices and guidelines for designing an API

What are some guidelines and best practices that I can adhere to while designing an API? At the bare minimum, I know that an API should be easy to use and flexible. Unfortunately those terms can be ...
10
votes
3answers
3k views

Why does int num = Integer.getInteger(“123”) throw NullPointerException?

the following code throws NPE for me: int num = Integer.getInteger("123"); is my compiler invoking getInteger on null since it's static? that doesn't make any sense! can someone explain what's ...
10
votes
3answers
727 views

Books about Javascript API design best practices [closed]

Anyone can suggest good books about Javascript API design good practices? What are the common practices developed by Google, Twitter, Facebook in their APIs. Code organization, request control etc.
10
votes
4answers
330 views

Strings or URI in .NET APIs?

I am writing an .NET wrapper API for the Netflix API. At this point I can choose to represent URLs as either strings or URI objects. Seems to me there is a good case for both. So if you were using ...
9
votes
4answers
391 views

Java API Design: NumberFormatException for Method that Parses a Semi-Numeric String?

I'm making a library that contains a few methods for parsing string dates and times. I am having difficulty deciding what exception those methods should throw when the string argument isn't ...
9
votes
4answers
243 views

Correct handling of return data

I have a question related to correct handling of returns of the DAO library I'm writing for one project. This library probably is going to be used by another people and I want to do it correctly. So I ...
9
votes
6answers
457 views

Extending a class and maintaining binary backward compatibility

I'm trying to add new functionality to an existing library. I would need to add new data to a class hierarchy so that the root class would have accessors for it. Anyone should be able to get this data ...
8
votes
2answers
164 views

Why there is no getFirst(iterable) method?

Iterables present two methods for getLast public static <T> T getLast(Iterable<T> iterable); public static <T> T getLast(Iterable<T> iterable, @Nullable T defaultValue); ...
8
votes
7answers
194 views

Getting the right level of Interface granularity

I'm doing some API design work at present, involving the specification of a number of interfaces as abstractions that will later be implemented by various concrete classes. As it happens, I am using ...
8
votes
9answers
222 views

Minimal API v. Convenience

I am trying to design the interface that will be used internally for my application. Following Google's example, I strive to reduce public API clutter. However, there are some convenience methods that ...
8
votes
9answers
1k views

Naming a dictionary structure that stores keys in a predictable order?

Note: Although my particular context is Objective-C, my question actually transcends programming language choice. Also, I tagged it as "subjective" since someone is bound to complain otherwise, but ...
8
votes
12answers
916 views

When is an API overengineered?

I despise working with overengineered APIs that don't make simple things simple. Nonetheless, I'm working on designing an API for an open-source library and I'm starting to feel that I'm falling into ...
7
votes
2answers
154 views

Overriding ToString() for debugging and logs - should the string be localized?

I'm designing a .NET library that will be used by other developers making both web and desktop applications. I'm overriding ToString() in various classes to provide information for debugging purposes ...
7
votes
5answers
153 views

Designing APIs in Java with top-down approach - Is writing up the Javadoc the best starting point?

Whenever I have the need to design an API in Java, I normally start off by opening up my IDE, and creating the packages, classes and interfaces. The method implementations are all dummy, but the ...
7
votes
3answers
161 views

Basic types to expose on a C++ API

I'm targeting Windows but I don't see any reason why some API code I'm writing cannot use basic C++ types. What I want to do is expose methods that return strings and ints. In the C# world I'd just ...
7
votes
6answers
2k views

Why is the Java date API (java.util.Date, .Calendar) such a mess?

As most people are painfully aware of by now, the Java API for handling calendar dates (specifically the classes java.util.Date and java.util.Calendar) are a terrible mess. Off the top of my head: ...
6
votes
6answers
58 views

API design for functions acting on arrays

I'm designing an API in Java for a set of numerical algorithms that act on arrays of doubles (for real-time financial statistics as it happens). For performance reasons the API has to work with ...
6
votes
4answers
508 views

Re-define wait method in a Java interface

I would like to use wait(int) as the signature of a method in a fluent API (used for http://www.jooq.org). The goal is to be able to construct SQL queries like this example: SELECT * FROM T_AUTHOR ...
6
votes
1answer
180 views

Why does Enumerable.ToLookup<>() return an ILookup<,> and not a Lookup<,>?

There is one method in Lookup<,> that is not in ILookup<,>: public IEnumerable<TResult> ApplyResultSelector<TResult>( Func<TKey, IEnumerable<TElement>, ...
5
votes
8answers
111 views

C API design: what to do when malloc returns NULL?

Let's say I'm writing a little library in C -- some data structure, say. What should I do if I'm unable to allocate memory? It might be pretty important, e.g. I need some memory to initialize the ...
5
votes
4answers
191 views

Why doesn't C# LinkedList.RemoveFirst() return the removed value?

Is there some idiomatic, performance or design philosophy reason why C#'s LinkedList's RemoveFirst() and RemoveLast() operations don't return the value removed? Right now, if I want to read and ...
5
votes
3answers
393 views

Good Practices in JavaScript API Development

What's a good approach to designing a JavaScript API? I'm relatively new to JavaScript and learning the key good features of the language, mostly from "JavaScript: The Good Parts". Currently, I'm ...
5
votes
4answers
356 views

How to design an api to a persistent collection in C#?

I am thinking about creating a persistent collection (lists or other) in C#, but I can't figure out a good API. I use 'persistent' in the Clojure sense: a persistent list is a list that behaves as ...
5
votes
3answers
429 views

Using annotation to ensure that value returned by method is not discarded

String in Java is immutable. The following snippet is, broadly speaking, "wrong". String s = "hello world!"; s.toUpperCase(); // "wrong"!! System.out.println(s); // still "hello world!"!!! ...
5
votes
3answers
300 views

Retrofitting void methods to return its argument to facilitate fluency: breaking change?

"API design is like sex: make one mistake and support it for the rest of your life" (Josh Bloch on twitter) There are many design mistakes in the Java library. Stack extends Vector (discussion), ...
5
votes
4answers
819 views

Why does Iterables.find() in Guava throw NoSuchElementException, instead of returning null?

I love Google Guava and use it a lot, but there is one method I always find me writing.. public static <T> T tryFind(Iterable<T> iterable, Predicate<T> predicate){ for(T t : ...
5
votes
5answers
591 views

Is it acceptable to return unmodifiableList or should I return array?

I have method List<Foo> getFoos () which gets the data from remote server and returns it. Of course, user shouldn't change number of items of the list because he'll get data not synchronized ...
5
votes
11answers
494 views

static vs non-static method for immutable class

Given the class definition below. How would one go about deciding whether the stub methods should be static or non-static? class Point { private final int x; private final int y; public ...
4
votes
2answers
96 views

Writing functions that accept both 1-D and 2-D numpy arrays?

My understanding is that 1-D arrays in numpy can be interpreted as either a column-oriented vector or a row-oriented vector. For instance, a 1-D array with shape (8,) can be viewed as a 2-D array of ...
4
votes
2answers
73 views

First write code using API, then actual API - does this approach have a name and is valid for API design process?

Standard way of working on new API (library, class, whatever) usually looks like this: you think about what methods would API user need you implement API that you suspect user will need So ...
4
votes
3answers
121 views

API Design for Idiot-Proof Iteration Without Generics

When you're designing the API for a code library, you want it to be easy to use well, and hard to use badly. Ideally you want it to be idiot proof. You might also want to make it compatible with ...
4
votes
4answers
47 views

Managing an objects Constructors across multiple software versions

I'm designing a library where I am debating if I should use a constructor to initialize objects in the api's model. My considerations are: By using a constructor I can enforce what data is required ...
4
votes
1answer
340 views

How do you create backwards compatible JAX-RS and JAX-WS APIs?

JAX-RS and JAX-WS are great for producing an API. However, they don't address the concern of backwards compatibility at all. In order to avoid breaking old client when new capabilities are ...
4
votes
3answers
170 views

Best practises when designing an API

I am designing an internal API for a system I am writing. What are some best practises in API Design to think about? Thanks
4
votes
9answers
197 views

API design: is “fault tolerance” a good thing?

I've consolidated many of the useful answers and came up with my own answer below For example, I am writing a an API Foo which needs explicit initialization and termination. (Should be language ...
4
votes
4answers
856 views

Why Java does not allow overriding equals(Object) in an Enum?

I've noticed that the following snippet... @Override public boolean equals(Object otherObject) { ... } ...is not allowed for an Enum, since the method equals(Object x) is defined as final in ...
4
votes
8answers
227 views

Suggest me a better name for an API method

Introduction: I'm working on an API which provides access to Picasa, Flickr and some other image services. I have a class WebAlbum (it provides access to nested photos, albums if allowed, and some ...
4
votes
2answers
1k views

Why is JavaMail Transport.send() a static method?

I'm revising code I did not write that uses JavaMail, and having a little trouble understanding why the JavaMail API is designed the way it is. I have the feeling that if I understood, I could be ...

1 2 3