The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
99 views

Avoid name collision with Cake Pattern

I'm currently currently using the Cake Pattern to implement some optimization algorithms. I often hit name collision problems. For instance: trait Add[T] { this: Foo[T] => def constant: T def ...
1
vote
1answer
42 views

Python module and object names clash

Please consider the following Python modules excerpts: foo.py: class Foo: (...) bar.py: import foo foo = foo.Foo() The variable foo, which was a module object, is overwritten with a Foo ...
0
votes
1answer
113 views

Django error : one or more models did not validate:

I'm making an app from Netutus http://net.tutsplus.com/tutorials/python-tutorials/building-ribbit-with-django/ and I got this error when I ran syncdb. I did some research I found I had to put an ...
8
votes
1answer
282 views

Shared library name collisions

I'm distributing a shared library (c++) and a python module that uses this library. I build a modified version of Bullet Physics Library (as a CMake subproject). I only use Bullet classes and ...
0
votes
1answer
382 views

Java name clash, have the same erasure, neither hides the other

I am getting this name clash error and i don't know how should i solve the problem. I have two classes and i am using overloaded method "createSensors". To simplify here is the code that generates the ...
0
votes
2answers
76 views

clash between class name and enum value: resolvable without namespaces?

class cippa{}; enum close{ cippa }; int main(){ new cippa(); //bad here } Using ::cippa doesn't help either. Is there a way to solve this without putting either the enum or the class in a ...
0
votes
0answers
38 views

[Qt cocoa]: a number of instances in one thread

I use a Qt on Mac OS 10.6/10.7 x64 with Cocoa. I have a main application and the number of plugins which are dynamic libraries. Main app just loads dylib, calls Init(), and Destroy() when plugin is ...
2
votes
2answers
419 views

Implementing interface and abstract class with same methode name resulting in generic name clash

public interface Foo <T> { void setValue(T value); } public abstract class Bar extends JFormattedTextField{ @Override public void setValue(Object value) { } } public class ...
8
votes
5answers
479 views

Same class name in different C++ files

If two C++ files have different definitions of classes with the same name, then when they are compiled and linked, something is thrown out even without a warning. For example, // a.cc class Student ...
3
votes
1answer
204 views

Cannot override a method because of a name clash

This code doesn't compile: import java.util.List; class A { void foo(List l) { } } class B extends A { void foo(List<?> l) { } } However, the following code compiles (foo in D overrides ...
4
votes
2answers
166 views

Name clash between package and class. Bug in Eclipse or javac?

For this source code ... ... Eclipse reports the following error: Only a type can be imported. pkg.a resolves to a package ... while Suns javac compiles it fine. Similar situation if I try ...
2
votes
4answers
193 views

namespace clash with two large libraries

I'm trying to use two very large C++ libraries to write my own library and application set and there are using directives present in the main header classes of both libraries. The conflict lies in a ...
6
votes
2answers
134 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 ...
0
votes
1answer
108 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
348 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
141 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 ...
4
votes
1answer
1k 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, ...
2
votes
1answer
468 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 ...
3
votes
3answers
569 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 ...
0
votes
1answer
68 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 ...
4
votes
2answers
608 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 { ...