namespaces

Urgently need help with flex tree

I need to construct Flex Tree with the given result I got from the service call . Below is my data.(I dont know how to remove this namespace, I tried with the removeNamespac(), That didnt work). I have to dispaly the filename as some parent and under it versionNumber as children, when clicked it points to that link. I need it very ur...

conceptual "stacks" and code layers in programming

I have been thinking a lot lately about how code gets organized in a layered way. I have been thinking of four different ways: Instantiation -- specifically objects are instances of classes. However, in several languages (like python), classes are also objects that were instantiated from a metaclass. So you can end up with an instan...

JavaScript Namespace Declaration Differences

What are the differences between these two types of namespace declarations? Is the first one better than the second one or vice versa? (function($) { $.build = { init: function() { this.attachEvents(); } } } $(document).ready(function() { $.build.init(); }); })(jQuery); versus ...

JSF define custom namespace for component declaration

Hello, when you use a component from extarnal libraries (or custom component) in JSF page you add the xmlns declaration, for example: xmlns:util="http://java.sun.com/jsf/composite/component/util I would like to know what I have to do to use a private address in the Namaspace like this below: xmlns:p="http://primefaces.prime.com.tr/ui...

How important is the context that is implied by a namespace?

Ok, the title might sound a bit vague but I really can't think of something clearer here. I recently was in the position where I needed a Point class, simply with two properties, X and Y and a ctor Point(int x, int y). Nothing fancy. Now this thing already exists in .NET, but this was in a library that handled certain objects on a map a...

How can I configure SOAP XML namespaces in web service client request?

I am having trouble calling a 3rd party web-service. I have not received a SOAP fault, but am not getting a valid resultset. A colleague of mine has written a client in RPG on the OS400 and it returns a valid resultset. When comparing the RAW request in Fiddler2 for both requests, the only glaring difference I noticed was that my c# c...

Eclipse-CDT: Use Namespace in automatic generated include-guards

Does somebody know if (and how) it is possible to add the namespace in the name of the automatic generated include guards in Eclipse CDT, when creating a new class using the .hpp/.cpp templates? For me eclipse generates new class with namespace nicely, but the include-guards does not contain the namespace, so if the same header file exi...

Global non static variable in unnamed namespace

I can't find a good explanation about global non static variables in unnamed namespace. I avoid global variables as much as I can. In this particular case I'm interested about behaviour just from pure theoretic side. Suppose the following code: In a.h namespace ai { class Widget { void DoSomething(int param); }; } In a.cc n...

JavaScript: is it possible to get the content of the current namespace?

As the question suggests — is it possible to get the names of all variables declared in the current namespace? For example, something like this: >>> var x = 42; >>> function bar() { ...} >>> getNamespace() { x: 42, bar: function(){} } >>> ...

Documenting namespaces that span multiple files doxygen

Consider I have 2 header files. // HEADER 1 /** * Doc for Foo here? */ namespace Foo { class This {...}; } && // HEADER 2 /** * Doc for Foo here? */ namespace Foo { class That {...}; } How should I handle this when documenting with Doxygen? ...

Creating a container 'thing' in C++ to hold static functions. What should 'thing' be?

Hi there. I'm currently building a set of common functions (Search algorithm implementations), and think I'm doing the grouping wrong. At the moment, I have a class, Sorting, that is declared in a file called Sorting.h (it's nowhere near finished yet, btw) like so: #ifndef SORTING_H #define SORTING_H #include <vector> class Sorting { ...

Library namespace becomes unknown after manual update

Hello, I recently faced an issue with a third-party DLL we use in one of our ASP.NET websites. When I need to update it, I download a newer version from vendor's website and just replace the binary in the "bin" folder in the website folder. Immediately Visual Studio loses this library's namespace (says the method is not accessible due ...

Referencing and using JScript.NET "functions only" exe assembly.

I've compiled what is intended to be client-side JavaScript using the JScript compiler (jsc.exe) on the server side in an attempt to make something that can be tested from a unit testing project, and maybe even something that can be debugged on the server side. The compiled file contains only functions as follows (just for example) and...

JavaScript namespace with Singleton usage? I'm stumped!

Hey everyone, This is my first post on StackOverflow. This community has provided me with some great insights into lots of different coding questions over the years. So since I've been stuck on this particular task in JS for days, I decided I'd lean on this great community and see what sort of help I could get on my question. I saw a...

Ruby - why put a module inside a class?

In Ruby, I see that it can be useful to put classes inside modules for namespacing. I also see that it's possible to put moduldes inside classes. But I don't see why you'd do that. Modules are generally mixed into classes, right? So what would be the purpose of defining a module inside a class? (I also notice that Googling "ruby 'modul...

Advice needed... Javascript OOP/namespacing

Hi everybody, right now i am at a point where i feel that i need to improve my javascript skills because i already see that what i want to realize will get quite complex. I've iterrated over the same fragment of code now 4 times and i am still not sure if it's the best way. The task: A user of a webpage can add different forms to a web...

How to use a namspace in the iphone sdk

probably me be stupid, but i cannot figure out how to use namespaces in the iphone sdk. Please could somebody help me. basically I need to know where to define a namespace in the files, i assume in the header, but where? I keep getting errors. ...

Windows equivalent to Linux namespaces (per-process filesystem mounts)?

Linux has a feature called namespaces, which let you give a different "view" of the filesystem to different processes. In Windows terms, this would be useful for example if you had a legacy program "floyd" that always loaded its configuration from C:\floyd\floyd.ini. If Windows had namespaces, you could write a wrapper script which wou...

Namespace best practices when dealing with a 3rd party company.

Probably down to preference but I was just after some of your thoughts; I have a scenario where I am working with two 3rd party companies (possibly more in the future) and we provide a service for said companies via individual business logic within the same technology. Would my namespaces be better laid out like this: MyCompany.Technol...

template specialized on a namespace

Given: namespace A { class Foo; class Bar; } namespace A { class Foo; class Bar; } I want to template a class on the namespace A or B such that the following works: template<name> class C { name::Foo* foo; name::Bar* bar; } Can this be done directly or do I need to create a pair of struct types with typedefs in them? ...