Tagged Questions

0
votes
1answer
11 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
1answer
32 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
78 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
124 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?
3
votes
0answers
39 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 …
4
votes
2answers
68 views

Documenting Interfaces and their implementation

Hi, I'm decorating my C# code with comments so I can produce HTML help files. I often declare and document interfaces. But classes implementing those interfaces can throw specific exceptions …
2
votes
5answers
73 views

How do you name your “reference” implementations of an interface?

Hi StackOverflow! My question is rather simple and the title states it perfectly: How do you name your "reference" or "basic" implementations of an interface? I saw some naming conventions: …
0
votes
6answers
142 views

Anyone has an alternative to using static methods in a C# interface?

I want to implement a collection, whose items need to be tested for emptiness. In case of a reference type, one would test for being null. For value types, one has to implement empty testing, and …
0
votes
6answers
95 views

How to use an Interface as Map’s Key

I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integration tests. Is it not …
0
votes
1answer
21 views

when doing a extract to interface, why doesn’t it modify the interface previously created?

I created an interface in a file, then a class that implements the interface in another file. If i add a property to the implementation class, is it possible to pass that method signature down to the …
0
votes
1answer
25 views

Serializable class inheriting from an Interface with a property of its own type

I have an interface, with a definintion for a property that is the same type as the interface. public interface IMyInterface { IMyInterface parent { get; set; } } Now …
0
votes
4answers
61 views

C# - Is it possible to extend an existing built-in class with a new Interface

Hi, I am just learning C# and I have a problem now. :-) In C++ I loved to use "const reference" as a parameter to avoid that the called method changes my passed object. I read somewhere that I can …
0
votes
1answer
37 views

Cast Interface in generic method

Hello All I am new user of interface. My problem is i have create a Generic class which have two parameter one is object type another is interface type. Now within class i can cast object using …
1
vote
2answers
79 views

.NET 2.0 - Creating an interface to allow for editing/adding to be handled by the object itself?

Hi all, I have this code structure: public abstract class ContentEntryBase { public string UniqueIdentifier; public string Title; public abstract ContentType contentType { get;} } …
2
votes
4answers
133 views

C#: interface inheritance getters/setters

I have a set of interfaces which are used in close conjunction with particular mutable object. Many users of the object only need the ability to read values from the object, and then only a few …

1 2 3 4 5 38 next
15 30 50 per page