Tagged Questions
8
votes
2answers
448 views
Is implementing an interface defined in a subpackage an anti-pattern?
Let's say I have the following:
package me.my.pkg;
public interface Something {
/* ... couple of methods go here ... */
}
and:
package me.my;
import me.my.pkg.Something;
public class SomeClass ...
1
vote
1answer
168 views
How do you deal with errors in enumeration / list processing (lowish-level API)
Ive struggled with variants of this problem many times, experimenting with different solutions, happy with none.
Abstract: Enumerating a list of items, an error for one item does not affect the ...