A namespace is a container that provides context for identifiers, within which names are unique.

learn more… | top users | synonyms (2)

8
votes
2answers
4k views

Using PHP Namespaces

I have been searching websites to try and get a handle on using PHP namespaces, but they all seem quite vague but what they're trying to do is easy to understand! My question is: I have a file called ...
2
votes
3answers
226 views

Why does C# requires either no namespaces or full namespaces (fully qualified name)?

I always thought about this but never understood why. Simple example: public IEnumerator<Effect> GetEnumerator ( ) { return this.Effects.GetEnumerator ( ); } ...
0
votes
1answer
27 views

Need an explanation of strange behavior from Clojure's ns function

I'm noticing some strange behavior from Clojure's ns function. I thought it didn't care too much about the order of its arguments, but apparently it can be extremely picky. In one file, I have (ns ...
0
votes
1answer
27 views

XSLT not outputting tags only text

I have looked at this question which is the same issue as I am having: XSL Conversion XML->XML outputs only text? However I declared a default namespace and the tags are still not being created, ...
4
votes
3answers
2k views

understanding the javascript global namespace and closures

I'm trying to improve my understanding of the global namespace in js and i'm curious about a few things: is there a "GOD" (i.e. a parent) object that all objects (since all things except primitives ...
3
votes
1answer
58 views

Is there any order when searching names in namespaces?

Hope that I am not asking a dumb question. I did search it in Google but couldn't find much information. I have the following simple code quoted from Exceptional C++ Book Item 31 by Herb Sutter: ...
1
vote
0answers
22 views

PHPLint - some problems

I am using PHP 5.3. For syntax check, I am using a library which make some syntax check, called phplint This library, for my opinion, is quite old, but it does the work. It is not quite simple ...
2
votes
2answers
46 views

Friend function declaration/definition inside a namespace

Consider a class inside a namespace. The definition of the class declares a friend function. namespace Foo { class Bar { friend void baz(); }; } This should, based on what I ...
1
vote
1answer
45 views

Reserved atribute names in Ember.js models

I have a Post model with the following fields: BlogApp.Post = DS.Model.extend({ author: DS.attr('string'), title: DS.attr('string'), preamble: DS.attr('string'), content: ...
0
votes
0answers
9 views

How to encapsulate the autotools' macro definitions?

In the autoconf manual, it is noted that AC_INIT (package, version, [bug-report], [tarname], [url]) defines multiple macro names such as AC_PACKAGE_NAME and PACKAGE_NAME. Running configure also ...
1
vote
2answers
42 views

C++ Split namespace declarations

I was wondering wether namespaces can be splitted or if a definition of a namespace has to be in a single block. To illustrate what I mean: namespace test { //declare a bunch of stuff here ...
0
votes
1answer
19 views

Namespace and Class Naming Best Practice in Atypical System

There is a lot of good guidance out there on best practices for namespace and class naming in typical systems. I am modeling a system which introduces a problem not addressed by the available ...
41
votes
10answers
18k views

VS2010 - Getting “type or namespace name could not be found” but everything seems ok?

I'm getting a "type or namespace name could not be found" error for a C# WPF app in VS2010. This area of code was compiling fine, but suddenly I'm getting this error. I've tried removing the Project ...
15
votes
4answers
1k views

Problems with PHP namespaces and built-in classes, how to fix?

I'm writing a small library in PHP and i'm having some problems with built-in classes not being read. For example: namespace Woody; class Test { public function __construct() { $db = new ...
2
votes
6answers
56 views

way of defining class in a namespace

I defined a class in a namespace in a header as follows #ifndef _c1_ #define _c1_ namespace classspace { class Aclass; } class Aclass { //body }; #endif _c1_ I added this header to ...
0
votes
0answers
17 views

Parsing Soap Fault Exception with no namespace

I used Apache CXF to create java Classes using a given WSDL. Below is the incomplete WSDL (I only included the things which I'm about to ask) <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" ...
16
votes
1answer
703 views

What is the benefit of import in a namespace in R?

The namespace mechanism of R allows one to export functions which then are visible to the user. Furthermore, it allows to import functions from other packages. Whereas the benefit of export is ...
1
vote
0answers
35 views

import vs importFrom in NAMESPACE file

The section on NAMESPACE files from the Writing R extensions manual says: Using importFrom selectively rather than import is good practice. Why is this true? Is this just to protect yourself ...
0
votes
1answer
15 views

Instantiating an object in a namespace with a constructor whose defined in the same namespace. C++

While attempting to make a function object wrapper class for raw functions, I'm encountering a multiple definition error by trying to define in a namespace in a header file and declare it in the ...
0
votes
0answers
1 views

How to clear old app namespace

At some point in the past we created a contest app using a 3rd party tool using the namespace looxcie but it has long since abandoned (can't even find where it is) and when you go to ...
0
votes
1answer
16 views

Remove xmlns namespace form an xml with xsl

I have this XML document <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="data.xsl"?> <products xmlns="http://zanox.com/productdata/exportservice/v1" ...
-1
votes
3answers
44 views

c++, MCVS 2012, header file, vector and namespaces [closed]

I have a trouble with finding answer for my questions (Q), so I registered here to ask you guys how it really works (or don't works) ;) I am writing in c++, in Visual Studio 2012, but still don't ...
2
votes
2answers
41 views

When to use the Y-Namespace

Is there a generally accepted convention among ABAP developers when to use the Y-Namespace and when to use the Z-Namespace for customer repository objects?
0
votes
2answers
32 views

PHP: autoloading multiple classes with namespaces

I'm trying to build my own framework for internal usage. I got structure like this: index.php boot / booter.php application / controllers / indexcontroller.php core / ...
1
vote
1answer
42 views

friend method from a different namespace

I have the following situation. I have a class foo inside my own namespace my_lib: namespace my_lib{ template<typename T> class foo{ T data; public: // blah blah }; } I am trying to ...
2
votes
2answers
79 views

Why does removing using namespace std cause errors in my project?

I have a problem with including header files in C++. As far as I know, it's not a good design to put using namespace std inside header but I got some error when I try to remove it. Here is my code in ...
243
votes
18answers
63k views

Why is “using namespace std;” considered bad practice?

I've been told by others on numerous occasions that my teacher was wrong in saying that we should have using namespace std; in our programs, and that std::cout and std::cin are more proper. However, ...
1
vote
2answers
33 views

How to alias namespaces in classes

I have a class in my project, for example, namespace BrightCompany.BigProjects.MyBigProject.ApplicationCodeFolder { public class MyBigProjectsClass { public static string ...
1
vote
2answers
204 views

How to namespace in a front controller situation using PHP

Alright I have a tiny framework that I hope to open source soon and I'm trying to implement namespacing so that controllers and models don't need appended text. Here's the basic code logic: url ...
0
votes
2answers
603 views

Invalid .resx file after renamed namespace

Consider the following situation: In my Windows Forms appliation I have a form. That form has a .resx file. The form makes use of a class ("OtherClass") from another assembly ("Other.dll"). ...
1
vote
1answer
36 views

Jar not using contained classes or namespace collision

I'm using netbeans to generate a web service client from a WSDL doc. The client works fine until we put it in our production environment. The jars were generated against javax.ws.xxxxx classes from ...
0
votes
2answers
42 views

How do I make a variable in a module on a global namespace?

I have been working on a module that takes a file name and a file line and creates a variable defined by the user and it works. But I want the variable to be on a global namespace here is the code: ...
0
votes
0answers
7 views

Type.registerNamespace is throwing errors when parts of the namespace already exists

In my corporate environment, we are using a lot of javascript. To simplify the management of all this script, and avoid naming collision, we adopted a javascript naming convention for namespaces, ...
0
votes
1answer
8 views

Adding a namespace to my permanent library in Microsoft Visual Studio

I am trying to add a custom namespace to my permanent library so that I can us it any future project. I want to just add "using MyNameSpace;" to be able to access it whenever needed. How would I go ...
9
votes
2answers
586 views

Expanding PHP namespace alias to full namespace string

I was wondering if there is a way to expand an aliased PHP namespace token to get the full namespace identifier. The purpose of doing so is that our object creation factory expects a string with the ...
0
votes
0answers
38 views
+50

Sharing generated code for shared imported XSD files

I use gSOAP for XML data binding. Recently I refactored my XSD files by extracting a common part from two files to a separate third file and then imported it in the first two files. This was a deep ...
0
votes
1answer
291 views

PHP: Accessing namespaced XML with SimpleXML

I'm using simplexml() function to parse through RSS feed, while i can access $var->title to <title> how do I access <dcterms:issued>? Feed excerpt (http://pastebin.com/nN8G78AH): ...
3
votes
2answers
2k views

PHP namespace simplexml problems

Evening guys. Firstly to say, I have read How do I parse XML containing custom namespaces using SimpleXML?. I'm parsing an XML document from a source not mind, and they use a custom namespace. ...
8
votes
2answers
2k views

Why doesn’t Objective-C have namespaces?

Why doesn’t Objective-C have namespaces? It seems like a simple feature that would make some class names more readable (AVMutableVideoCompositionLayerInstruction anyone?) and axe the silly letter ...
0
votes
0answers
38 views

Namespaced form_for claims route does not exist

I've built this kind of structure lots of times before without issue, but this time I am stumped. I have an "admin" namespace defined in my routes like so: namespace :admin do resources :articles ...
0
votes
4answers
87 views

Why am I forced to use full namespaces?

I have created the following class: using System.Windows; using System.Windows.Input; using MyUtils.MyArgParser; namespace MyUtils.MyImplement { public static class ImplementExitOnEscape { ...
1
vote
0answers
56 views

Putting classes in different folders but calling them under the same name space?

I am using Entity Framework in my web application project and there are going to be a LOT of tables in the proejct cauing a lot of class files having to be made. I want to orginize the class files ...
-2
votes
1answer
18 views

Modify individual namespace names in Visual C# 2010 Express

I recently organized the classes in my project into folders and would like to have the namespaces of the classes renamed according to their folders. I have tried to rename them using 'Rename' (F2) but ...
0
votes
0answers
15 views

Taglib/namespace for PrimeFaces isn't being resolved

I am using Oracle Enterprise Pack for Eclipse, running WebSphere Application server, and using Maven. I have added PrimeFaces 3.5 to the dependencies in the POM file and <html ...
0
votes
2answers
58 views

Cannot `import static` static inner class?

I have a class A with a static inner class inside it called B: import static A.B.*; class A { static class B { static int x; static int y; } public static void ...
0
votes
1answer
18 views

XSLT issue with renaming the elements — changing namespace

I am trying to rename/remove the namespace prefix from the output XML. However, one of the top element should contain the namespace declaration without prefix. The XSLT is not working properly. In ...
9
votes
4answers
77 views

Reversing from module import *

I have a codebase where I'm cleaning up some messy decisions by the previous developer. Frequently, he has done something like: from scipy import * from numpy import * ...This, of course, pollutes ...
0
votes
0answers
6 views

Doctrine2 getRepository and the use operator

I am trying to clean up a little bit of code and am having some trouble. I have a few entities that I am using over and over again in a routing file. For example: $categories = ...
0
votes
1answer
19 views

Doctrine 2 namespace issue

I'm using Zend Framework 1 with the Bisna library to integrate Doctrine 2. I generated my Entities from my database model with the Doctrine 2 CLI. This is all working fine, except for the setter ...
17
votes
3answers
12k views

Greasemonkey namespace..what is it for?

I'm learning how to use greasemonkey, and was wondering what the @namespace metadata id is for. Does it have to be a web address? Or can it be a folder/directory on my computer? Does it even ...

1 2 3 4 5 87