Tagged Questions
The name-clash tag has no wiki summary.
6
votes
2answers
98 views
Generics name clash
Consider:
public interface Foo<T> {
public static class X{}
public void foobar(T t);
}
public class Bar<X> {
Foo<X> foo = new Foo<X>() {
public void ...
4
votes
2answers
505 views
Problem mixing Objective-C and C++ code
I have an Objective-C/C++ application which uses functionality that is provided by a C++ library.
One of the C++ classes includes an enum like this:
class TheClass
{
public:
[...]
enum TheEnum
{
...
3
votes
3answers
305 views
C++/VS2005: Defining the same class name in two different .cpp files
Somewhat of an academic question, but I ran into this while writing some unit tests.
My unit test framework (UnitTest++) allows you to create structs to serve as fixtures. Usually these are ...
1
vote
1answer
963 views
ASP.NET MVC 3 Model Binding - ViewBag.Title clash with input of id=“Title”
There seems to be an issue with the ViewBag dynamic properties. Lets say I have:
@{
ViewBag.Title = @Model.CourseName;
}
And then in a form on the page I have:
@Html.TextBox("Title", null, ...
1
vote
1answer
213 views
Java Generics Name Clash when Extending
I am new to generics and I would appreciate any help I can get with the following problem:
I have this parent class:
public class Parent<K, V> {
public void f(K key,V value){}
}
And ...
0
votes
1answer
37 views
How should one deal with library clashes in Application Servers?
Third-party libraries are often included by the appliation server you are deploying to and class with the ones included by your application. So far I have dealt with this in the simplest and hackiest ...
0
votes
2answers
150 views
How to build a C library with an interface of few functions and the rest of the objects hidden?
Let's suppose I have three C object files: p.o, q.o, r.o, and I want to make a library with them. The first object file, p.o, has a couple of functions I want to export, which are implemented using ...
0
votes
1answer
78 views
Nameclash when importing packages that has the word 'django' in the name?
I have a somewhat odd problem. I decided to rename an entire branch of my package from
foo.bar.somemodule
to
foo.django.bar.somemodule
The problem is after this is done, I get the following ...
0
votes
1answer
54 views
Name collisions between layers
So I'm developing a very cool (and very large) n-tier application.
Basically I have the following assemblies:
Domain
Domain.Contracts
Services
Services.Contracts
Presentation.Admin
...