Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
1k views

C# Default scope resolution

I have inherited a c# class 'Button' (which I can't change) which clashes with the BCL class 'Windows.Forms.Button'. Normally, Id be very happy to go: MyPackage.MyClass.Button; But there are a ...
3
votes
2answers
426 views

Java name clash error

I have a superclass which implements the Comparable Interface and overrides the compareTo() method. One subclass of this superclass has to implement it's own compareTo() method but I'm not able to ...
2
votes
1answer
383 views

Java naming clash between method variable and package names

I have some classes generated from WSDL files by the Axis Framework. In one of these classes, there is a generated method public com.initechsystems.www.initech7.initechbo.Organization ...
1
vote
3answers
164 views

How do I deal with Glassfish included libs crashing with application supplied libs?

A CXF JAX-RS application I have uses jackson to marshal POJOs to JSON. This works for the most part, but the other day it failed with a NPE when marshalling a deeply nested object. After some ...
1
vote
1answer
84 views

Type Clash Because of Circularity in ML

i'm trying to right a simple function to sort a list using a selection sort, Im code is below: fun slctsrt [] = [] | slctsrt (x::xs) = slctsrt2 (xs, x, []); fun slctsrt2 ([], min, []) = min | ...
1
vote
2answers
134 views

Allocated memory address clash

i don't understand how this happen. This is portion of my code.. int isGoal(Node *node, int startNode){ int i; . . } When i debug this using gdb i found out that 'i' was ...
1
vote
1answer
39 views

Is it possible to have 2 different versions of the ASP.NET Ajax Library running on the same page?

I'm using some third-party controls that use an older version of the ASP.NET Ajax library, but also would like to use some features of the newest version of said library. The problem, naturally, ...
0
votes
1answer
447 views

Dynamically check timetable for clashes - jquery/php

I'm making a timetable site for a music festival. The purpose of this site is for people to choose acts they want to see and compile their own personal timetable for the event. At the moment the site ...