-2
votes
9answers
236 views
Can something be initializable?
I've created an interface called Initializable, but according to Dictionary.com this is not a word. Searching Google only gives about 30k results and they are mostly API references.
Is there another …
2
votes
8answers
275 views
Hands-free mice for programmers?
The standard setup for programmers really requires three hands: two for the keyboard, and one for the mouse. I'm not blessed with an extra hand, so my hands have to shift from mouse to keyboard to …
6
votes
1answer
94 views
Does a reference work with human behavior/perception patterns exist?
In all current and future projects I pledged to concentrate all the ground work around interaction design.
I'm aware of Alan Cooper's work, and it's excellent, but what I'm looking for is a reference …
3
votes
7answers
218 views
How not to implement a function of an interface in class?
An interviewer asked me the following question in interview, but I don't know what could be the answer of this question, please help!!!
What must be done if i don't want to
implement a function …
0
votes
3answers
38 views
How to add a rounded rectangle shape (or Box) in iphone interface?
I want to add a rounded rectangle shape in iphone interface but the iphone library doesn't have that object. How do i do it?
1
vote
2answers
42 views
Cocoa move to parent from a subclassed instance
I have a subclassed NSTextField to limit the maximum length (only 1 character). Now, once the user finishes entering this one character I would like to move the focus to the next NSSTextView. This is …
0
votes
1answer
86 views
Java: Simple issue with Interfaces and Generics
I made an interface to work with JGraphT. My intended use is like Comparable, in that implementing Comparable allows objects to be used with certain data structures. Simiarly, I have a JGraphT …
2
votes
5answers
80 views
How should I inherit IDisposable?
Class names have been changed to protect the innocent.
If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses …
0
votes
1answer
38 views
VIM Modality interface implementation
I've been searching on google and here on SO for any hints or tips and tricks on implementing the vim like modality interface (the command and insert modes) and possible [demo] commands or keystrokes. …
0
votes
1answer
209 views
How make scrolling function with Interface builder on the iPhone?
I wonder how is possible to make a view scroll, like in a table view.
I have a form that have several fields on it. I don't wanna buil it as a traditional table that drill-down.
Is not very large …
0
votes
1answer
18 views
problem in getting value of the object attribute in flex
i have an xml which contains 'interface' sub tag, iam converting xml to object using SampleXmlDecoder. compiler did not allow me to access the value of the 'inteface' attrible of the resultobject.
…
1
vote
3answers
95 views
Using Reflection.Emit to create a class implementing an interface
I need to generate a class using Reflection.Emit that implements the following interface.
public interface IObject
{
T Get<T>(string propertyName);
}
Does anyone have an example of how I …
0
votes
1answer
89 views
Go: Cannot use (*struct) as (*interface) in field value
I have the following code:
// eventloop.go
type Object interface {
ActivateSlot(name string, parameters vector.Vector);
}
// main.go
import loop "./eventloop"
// ...
const slotname = …
5
votes
4answers
138 views
interface vs abstract class
In php :: Please explain when i should use interface and when i should use abstract class? And how i can change my abstract class in to an interface?
0
votes
1answer
35 views
Any hints on programming Dia with Python extensions?
I'm searching for documentation on how to do it properly. Any hints?
