Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
170 views

In Java, why is it possible to qualify an Enum Constant with another Enum Constant?

Recently, I've noticed, it is possible to have: class Test { public enum Season { WINTER, SPRING, SUMMER, FALL } Season field = Season.WINTER.SPRING; // why is WINTER.SPRING possible? } Is ...
7
votes
2answers
452 views

How do I write the qualified name of a symbol in Haskell?

I've got a name clash between two different Haskell modules that want to use the same infix operator (<*>). The Haskell 98 report says that modid.varsym is permitted, but I can't get it to ...
3
votes
2answers
101 views

Confusion understanding Virtual function call and dependent base class

I am reading from ebook Templates complete guide and question which i'm gonna ask might be stupid to you but.. There is section in that 9.4.2 Dependent Base Classes which i am unable to understand. ...
3
votes
2answers
118 views

Is qualified name in the member function declaration allowed?

This code is accepted by MSVC9.0. My question is whether it is legal according to the standard (the old and/or the new one). A quote would be very much welcome, too. class X { void X::f(); };
2
votes
1answer
101 views

./ in Clojure (qualified symbol?)

I'm currently implementing a different language (Shen) in Clojure. Shen has a symbol "./" but in Clojure this is interpreted before evaluation and thus results in an error. I do not need "./" inside ...
2
votes
1answer
103 views

Why qualify global elements in instance document?

When validating an xml document using xml-Schema and namespaces, the instance document has to have its global element prefixed with a namespace to qualify it, besides declaring the namespace itself. ...
1
vote
3answers
252 views

Use of qualified name in function parameter

According to the C++ Standard, function parameter's name is parsed by a declarator-id, and a declarator-id can also be a qualified name. That means, the following code is perfectly valid (if I've ...
1
vote
3answers
990 views

XDocument.Descendants(itemName) - Problems finding qualified name

this is my first post here - usually i'll find the answer somewhere in this board - but not today :-( okay: I,m trying to read a XML-RSS-Feed from a website. Therefore i use a async download and ...
0
votes
1answer
57 views

Parsing wsdl (retrieve namespaces from the definitions)using an Element Tree

I am trying to parse a wsdl file using ElementTree, As part of this I"d like to retrieve all the namespaces from a given wsdl definitions element. For instance in the below snippet , I am trying to ...
0
votes
0answers
43 views

Qualified table names in Rails

I am connecting to a legacy database as a user who did not create most of the tables. I must therefore use qualified table names in my queries (for example select table.* from owner.table). I tried ...
0
votes
1answer
66 views

Qualified naming

I'm currently doing some maintenance on an application and I've come across a big issue regarding the qualified name in tsql. I wondering if someone could clear my confusion up for me. From my ...
0
votes
3answers
707 views

How do you find the fully qualified path name of a file?

On Windows, you can go to "Run," type in "cmd," press enter, and start up "C:\Windows\system32\cmd.exe" rather easily. The same is true for "python" or "pythonw" (though nothing pops up in the second ...