4
votes
2answers
23 views
XCode: Possible to auto-create stubs for methods required by Protocol interface?
Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Overri …
2
votes
17answers
197 views
Compile a Java class against an interface even if none was specified
I'm teaching an intro to programming course and we're using Java. I want to help the students learn how to translate a written class specification into a working program. I will pr …
0
votes
1answer
20 views
Is it possible to change visual studio 2008 interface language?
Hi all,
I've installed a copy of a Spanish version of visual studio 2008 (professional edition) on my computer and I was wondering if there is a possible or if exist some language …
0
votes
7answers
98 views
Java - Instantiating objects of type X when all you have is the reference type
I had a quick look at the "Related Questions" suggested but I couldn't find one directly related to what I'm asking. Even if there was one, I'd still appreciate your opinion on the …
2
votes
3answers
116 views
C# contructor in interface
Hello,
I know that we can't have constructor in an interface but here is what I want to do :
interface ISomething
{
void FillWithDataRow(DataRow)
}
…
1
vote
5answers
85 views
Downside of this macro construct and possible alternatives
I recently saw some code using macros like
#define CONTAINS(Class, Name)\
private:\
std::list<Class> m_##Name##s;\
public:\
void add_##Name(const Cla …
3
votes
4answers
98 views
Can I force an implementing class to return an object of its own type?
I want to make an interface in C# that defines a method that always returns an object of the implementing class, thus:
public interface IParser {
IParser Parse(string s);
}
p …
1
vote
2answers
43 views
Can I see the “final” C# code when viewing an interface’s methods?
What I'm trying to say is, if an object is defined as an interface, then instantiated from a class factory, is it possible in VS 2008 to right click on a method call from that obje …
4
votes
1answer
34 views
Is it possible that C# has problems calling VB6 methods that have optional parameters?
I added 3 optional boolean parameters to a method found within a VB6 DLL. The class that houses it is MultiUse (public), and the method itself is Private. The class implements a sp …
1
vote
2answers
33 views
Make an object searchable with array_search in PHP
Hi,
I would like to make a class in PHP such as it would be searchable with PHP native method array_search. Currently my class implements IteratorAggregate and Countable, which al …
1
vote
2answers
55 views
Auto Property that returns an interface
This is something curious that I saw in my coding today.
Here is the sample code:
public class SomeClass
{
public IUtils UtilitiesProperty { get; set; }
}
public interface IU …
0
votes
2answers
34 views
‘Remove middleman’ IntelliJ refactoring on an empty interface
I have an interface which is now empty, and extends another interface. I'd like to remove the empty interface and use the base interface, and am trying to find the correct refactor …
0
votes
1answer
26 views
Mapping an interface and concrete class with FluentNHibernate
I'm trying to map an interface and concrete class with fluentnhibernate.
here's my interface / class:
public interface IUser
{
int Id { get; set; }
}
public class User: IUs …
0
votes
3answers
42 views
Derived Interface with derived interface member
Hi
I have 2 base interfaces, IViewBase (which all views will implement) and IPresenterBase (which all presenters will implement):
public interface IViewBase { }
public interface …
2
votes
5answers
67 views
Can Visual Studio 2008 provide hints on interface method implementation
Is there any way I can get VS2008 to provide further detail on how a particular interface should be implemented?
I'm thinking along the lines of how the /// tags work when using …
