Questions tagged [fully-qualified-naming]
75 questions
1
vote
1 answer
How to NOT use fully qualified table names in MS SQL Server 2008 R2
I've been asked to make some changes in an old asp-classic application. The production server and the server they use for testing and dev or over 20 routers away and the lag time between my typing and then seeing the type is horrible. So I set up a…

Madcowtricks
- 11
- 2
1
vote
2 answers
Creating WebControls from fully qualified path (assembly name?)
I have a webpage in ASP.NET 3.5 that will be creating WebControls dynamically. The WebControls that it will be creating will be known by their fully qualified path (ie - System.Web.UI.WebControls.whatever). The reason for this is because I am…

Jagd
- 7,169
- 22
- 74
- 107
1
vote
0 answers
Finding usage of qualified class names (as opposed to imports) in a java codebase
I am looking for a way to find usage of qualified class names:
com.company.TheClass theInstance = new com.company.TheClass();
as opposed to imports:
import com.company.TheClass;
TheClass theInstance = new TheClass();
Is there a maven plugin that…

balteo
- 23,602
- 63
- 219
- 412
1
vote
1 answer
C# Net Class referenced class library: why must I fully qualify a public class?
Having an annoying issue where though I've built a class and referenced it in a client program like below - with the using, the compiler wants the fully qualified name of my method.
// this doesn't compile because it does not recognize the Decrypt…

PBMe_HikeIt
- 659
- 8
- 24
1
vote
1 answer
How to disable automatic namespace resolution in Intellisense for C# (Visual Studio 2010)
How can I disable automatic namespace resolution in Intellisense for C# (Visual Studio 2010)?
This might sound strange but I need to have the fully qualified names show up as follows:
System.Windows.Forms.Form form = new…

Raheel Khan
- 14,205
- 13
- 80
- 168
1
vote
1 answer
When writing C++ member definitions, is there any reason to prefer putting them inside a namespace block over fully qualifying them, or vice versa?
In a C++ class, we can write our members in either of two styles. We can put them inside of a namespace block, or we can fully qualify each.
Is there any reason to prefer one style over the other?
Header file looks like this (bar.h):
namespace…

Boinst
- 3,365
- 2
- 38
- 60
1
vote
3 answers
How to nicely format generated Java code
I am looking for a way indent the java source code automatically. I have a tool which generates java code from other language. Now, I want to indent the generated code.
Please tell me how can I do that? in an other maner, how can i do exactely what…

biba
- 41
- 6
0
votes
0 answers
Is it possible to have Visual Studio display a different Solution Explorer name than the csproj file name?
I have a solution with a few projects in them, and each of the projects use a fully qualified name, such as ABC.Appname.Api and ABC.Appname.Web. With a long app name, this can make the names of the projects really long and it is annoying to look for…

cjh15
- 1
0
votes
1 answer
Oracle procedure cannot be called after adding a table with the namew of the schema
We had a small glitch which we tracked down easily. But we try to find the documentation for this behaviour and are not able to get this neither do we understand why Oracle behaves like this.
What we have:
Oracle 19c
A schema named ABC
A procedure…

Jörg
- 69
- 8
0
votes
0 answers
How to resolve the fully qualified name of code elements in C# with Roslyn?
Give C# code file, for example:
using System;
namespace std
{
class HelloWorld
{
static void Main(string\[\] args)
{
**Console.WriteLine("Hello World!");**
**Console.ReadKey();**
}}}
How to resovle the fully qualified name of each code elements…
0
votes
1 answer
fully qualified name vs import statement
case 1.
class A extends java.util.ArrayList
{
public static void main(String[] args)
{
ArrayList a=new ArrayList();
}
}
Here I am getting a compiletime error saying,
cannot find symbol
Symbol:class ArrayList
…

veerraju annamdevula
- 21
- 4
0
votes
2 answers
Is there an equivalent to the OBJECT_ID function from T-SQL in Oracle?
The OBJECT_ID function in SQL Server is very useful for resolving an object name that is not fully qualified using the name resolution rules that apply for calling that function/procedure. So for instance, if I call the SP name foobar, T-SQL will…

flxkid
- 1,441
- 1
- 13
- 21
0
votes
0 answers
Is there a way to customize Content Assist in xtext?
Suppose I have a grammar "A" which cross references from another grammar "B". for example:-
test.mydsl->
entity A{
var p;
var q;
}
otherTest.mydsl1
entity B{
var "??"
}
so right now what is happening is as i press Ctrl + Space…

Siddhant Gupta
- 3
- 3
0
votes
1 answer
Accessing application deployed on cluster through fully qualified domain name instead of IP Address
We have deployed our application on Gardener K8 cluster. Exposed one port xxxx for external traffic through Service Type LoadBalancer. Currently cloud provider is assigning 'external ip' to service, which keeps changing with every build/deployment.…

Nanda K S
- 21
- 1
0
votes
1 answer
Visual Studio 2010 - TFS - Cant remove workspace, error fully-qualified username
So i have an Microsoft Visual Studio 2010 - Team Foundation installation on my laptop that has corrupted Workspaces. I have tried to do a full cleanup but i cant get these Workspaces to reset or whatever.
The problem is that the WorkSpaceOwner isnt…