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

learn more… | top users | synonyms (2)

0
votes
0answers
6 views

How can I make Visual Studio update namespaces when I move classes?

I remember that when I worked with Java tools, I could easily reorganise classes and packages by dragging and dropping them in the IDE. This would automatically update namespaces to match the new file ...
0
votes
0answers
9 views

Laravel 4 Namespace without \

Best everyone, There is one thing in Laravel 4 I just can't understand if you create a namespace in my case cms and you want to use for instance View::make or Input::all() laravel wil tell you it ...
-1
votes
1answer
21 views

Why can't you inherit PHP namespace aliases from included files?

From the note on http://php.net/manual/en/language.namespaces.importing.php Importing rules are per file basis, meaning included files will NOT inherit the parent file's importing rules. So this ...
0
votes
0answers
11 views

ERROR: a 'NAMESPACE' file is required

I am trying to install some R packages on our Linux machine using R CMD INSTALL -l <ourRlibrarylocation> <path where I saved the packagename.tar.gz file> and I see an error message ...
0
votes
0answers
8 views

Multiple namespaces in gSoap

I have three web services. Client, Server and another Server. The first server acts as client to second server. Now i have two services that are being run on the same machine. These are seperate ...
0
votes
1answer
8 views

How to generate uniq namespace from a geven string?

I tried to assign automatically a XMLNS from PHP namespace but the namespace in PHP is so long and I don't want to send to client side a structure of my app... example: Namespace in PHP = ...
1
vote
1answer
13 views

XML namespaces, why are they neccessary for prefixes?

So I've been reading about namespace on w3schools and I understand they are to uniquely identify an element. But what is the point of having namespaces if you have to have prefixes along side them. ...
0
votes
4answers
66 views

Usage of namespaces in C# [duplicate]

What is the difference between defining a namespace by using keyword and simply giving the path to access the file wherever it is used ?? Does it cause any change in the internal working of the ...
0
votes
0answers
31 views

Couldn't find modelDataContext

Im trying to use LINQ in my ASP.NET/C# website. For that I need to access the class 'modelDataContext' which is a part of the LINQ namespace. Im using Visual Studio 2010 Professional This is my C# ...
0
votes
0answers
9 views

can qualified namespace be same as default namespace

Can a qualified namespace be the same as the default namespace? Can someone point me to the specific point in the w3 specs that allow or deny this - I have tried reading through ...
0
votes
3answers
38 views

Unexpected character in input: '\' (ASCII=92) state=1

My client says he is getting this error using my script: Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /path/to//header.php on line 34 Parse error: syntax error, unexpected ...
0
votes
3answers
79 views

temporarily 'reset' namespace in #define

I was wondering whether there is a way to 'reset' a namespace. I'm mainly asking this because I would like to specialize some template structs in another namespace using a define. Here is a ...
0
votes
0answers
26 views

JAX-WS working in a different namespace than published wsdl

I have implemented a SOAP web service in Java with JAX-WS. I need to define my own parameters, for example the targetNamespace so I built my own WSDL and declared it on the sun-jaxws.xml as follows: ...
0
votes
1answer
25 views

Python's namespace equivalent for dict.get()

Right now I have the following code in my project: if keyword in sample_namespace: return sample_namespace[keyword] else: return None Namespace is build dynamically from plugins content. ...
0
votes
1answer
25 views

PHP namespace constant undefined

I'm relatively new to PHP, and I'm trying to unit test some code within a namespace. unfortunately constant definition in a config file is giving me issues. Here is the relevant code. directory ...
0
votes
1answer
23 views

Member function called PlaySound() causes linker error when called

In my class, I have a function declared called PlaySound(std::wstring). This class resides within its own namespace. When I am attempting to call this member function from an instance of this class ...
0
votes
0answers
14 views

Rename Namespaces in separate file

I need some help on renaming namespaces in php. This is working (index.php): require_once __DIR__.'/../system/autoloader.php'; use helpers\HTML as HTML; But i got a bunch of classes and need to ...
2
votes
1answer
33 views

Python namespace confusion

I'm trying to create a module and it's worried that I might be doing something wrong. I'm encountering some problems with my namespace. I've made an example much like what I have, it has three files ...
1
vote
1answer
18 views

Zend Framework 1.11: how to autoload a class that uses namespaces

I have a Zend Framework 1.11 application, and I want to use a package called RandomLib. The problem is, it doesn't have an autoloader, and I've tried reading the Zend documentation on using ...
1
vote
1answer
12 views

How to use JSDoc3 to document nested namespaces

I'm having trouble using JSDoc3 to document code that's structured along these lines /** * @namespace MyNamespace.MySubNamespace */ (function (MyNamespace) { MyNamespace.MySubNamespace.Foo = { ...
-4
votes
0answers
11 views

Changing the Capital Letters of a Facebook Page [closed]

How can I change the name of: "The Art Sartorialist" to "The Arts Artorialist". I'm not even changing the URL or anything, just the capital letter of the name....
1
vote
1answer
77 views

C++ Namespace Specification Redundant or Useful?

From what I understand, function resolution occurs from inner scope to outer scope. Therefore, in the following example, MyNamespace::foo() will be executed in both cases. foo() {} namespace ...
1
vote
1answer
51 views

c++ namespace resolution (“automatic using” based on arguments?)

When I call a function declared in a namespace from outside this namespace, I usually need to explicitly prefix with the namespace: namespace ns1 { void myfunc(); } myfunc(); // compiler ...
1
vote
1answer
53 views

Working with compounds of libraries

Often I find myself in a situation when I need to intertwine functionality of two or three libraries. These compound functions are used in a manner similar to a library themselves. About 60% of calls ...
0
votes
1answer
39 views

Zend Framework 2 Namespace ambiguity

I am writing an API for Jambase by using Zend/Http from Zend Framework 2 . Here is my folder structure. Jambase |---composer.json |---composer.phar |---src |----Jambase |------|Service ...
0
votes
2answers
36 views

What does boost bcp --namespace really do?

I was under the impression that the boost bcp, with the namespace option, was meant to rename the includes and defines for any listed modules. Upon running the tool and examining the output, it ...
0
votes
3answers
33 views

Is it possible to use DllImport to access namespaces?

I just created an unmanaged C++ DLL and am trying to use DllImport in my C# app to access the function calls. However, each function belongs to its own namespace (there are multiple header files, ...
0
votes
0answers
22 views

How can I set up custom namespaces in layout file in Android studio?

I am using the dragsortlistview library for my project which requires the usage of a custom namespace in the XML file in order to customize it. mylayout.xml: ...
-1
votes
0answers
47 views

C++ Windows Forms - How can I use my own class

I am trying to create a Windows Forms Application. I have already made the UI and i have written my class in a header and a cpp file. Now i want to use my class in the form.h file, but i am not sure ...
0
votes
1answer
38 views

Read / write a file in a shell namespace extension using shell APIs

I've used SHGetDesktopFolder() to get a PIDL and then walked down it's contents using IShellFolder. I now have a particular PIDL referencing a filesystem location, and I can use BindToStorage and ...
1
vote
2answers
48 views

GWT JSNI - Call java method of specific object

Consider the following widget. I add two of them to my page. The first one gets the name "widget1", the second one the name "widget2". It just should give out its own name, but called from javascript. ...
0
votes
1answer
14 views

__autoload with namespace class gives fatal error for file not found

I was going through the __autoload feature that PHP provides. However this is the index.php I have:- define('app_path', realpath('../')); $paths = array( app_path, get_include_path()); ...
5
votes
1answer
119 views

Understanding the scope of operators in C++

#include <iostream> namespace Foo { class Baz { }; std::ostream& operator<< ( std::ostream& ostream , const Baz& baz ) { return ostream << ...
0
votes
0answers
13 views

Can I change the namespace of my jaxws in the web.xml?

I have a Web Services implemented with JAX-WS which generates the following two classes: @XmlRootElement(name = "mod1", namespace = "http://mod1/") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name ...
0
votes
0answers
10 views

Is there a stable tool to convert psr-0 compatible pseudo_namespaces to actual namespaces?

Can anyone recommend a tool to port an existing library to namespaces? Preferably smart, as not only with classes but for edge cases like: $configuration = ...
0
votes
0answers
37 views

I've included additional header files in my code, and it seems one of my ENUM item conflits

I'm having a problem where I've included additional header files from outside in my c++ project and now one of the ENUM seems to be conflicting. Is there something I could do here? for example ...
1
vote
1answer
28 views

XML namespace data element access returns null

Given the following XML is returned as a Xdocument class document 'xdoc' <MBNProfile xmlns=""http://www.microsoft.com/networking/WWAN/profile/v1""> <Name>Generic</Name> ...
2
votes
3answers
69 views

C++ Namespace Noob Needs Assistance

I have run into some quirks about my code style that I'm hoping to fix, namely with namespace usage. Let me begin by saying that I am currently employed as the sole software engineer on my particular ...
1
vote
2answers
39 views

Possible to have separate “namespace” in one file?

Is it possible to block access to variables and functions as you would by having a separate file but in the same file? Like how in javascript you would use anonymous functions.
2
votes
1answer
68 views

How can you convert a Python identifier into a number?

Reference: Is there a faster way of converting a number to a name? In the question referenced above, a solution was found for turning a numbe into a name. This question asks just the opposite. How ...
0
votes
1answer
11 views

spl_autoload Class not found following namespaces directory structure

I'm trying to use class autoloading in my project. This is what I wrote: on main.php: namespace myproject; spl_autoload_extensions(".php"); spl_autoload_register(); ...
0
votes
1answer
22 views

jQuery event namespaces don't work

Look, it doesn't work: http://jsfiddle.net/2pxfr/ off doesn't seem to unbind my event listeners :| But without the namespace it works: http://jsfiddle.net/2pxfr/1/
0
votes
0answers
8 views

Android namespace correct spelling error with Accessibility

I'm developing an application using accessibility events and I've noticed that all examples uses the following namespace when defining the accessibility options ...
0
votes
1answer
23 views

Php class declaration inside class method with same names and PSR-0 namespaces, error

I have create my own MVC framework which is PSR-0 compliant atm. and uses php-ActiveRecord as ORM. I have found an issue where I from a controller called User, which exists in the namespace ...
0
votes
0answers
24 views

Giant file full of event handlers! How to organize a large jQuery file in an AJAX web app?

I've made an AJAX-heavy web application and included jQuery as a library to help facilitate DOM manipulation and AJAX requests, etc. Here is the problem: My JavaScript file is a giant collection of ...
8
votes
3answers
779 views

Python importing class attributes into method local namespace

I have been wondering for a while if there is easier way to assign class attributes to method local namespace. For example, in dosomething method, I explicitly make references to self.a and self.b: ...
3
votes
2answers
42 views

Two identical object names; how to make VS ignore one of them?

I have basic User model class that I am using but the problem is that in ASP.NET MVC there is already some property named User that is getting HTTP authentication information. Can I somehow make ...
0
votes
1answer
50 views

What is the default namespace

what is the default namespace in c++? #include<iostream> class B{ ..... } int main(){ ..... } so what namespace is class B in?
1
vote
1answer
23 views

Undefined constant namespaces

I'm learning about the namespaces in PHP. Here is the code I use lib1.php <?php namespace App\Lib1; const MYCONST = "App\Lib1\MYCONST"; function MyFunction() { return __FUNCTION__; } ...
0
votes
0answers
17 views

JAXB external binding on WSDL

Hello I am trying to change the resulting package names of some namespaces in this wsdl file: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- ...

1 2 3 4 5 89