Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
11answers
997 views

Really long class/variable/property/method names

Some friends and colleagues of mine have a little running contest to find or write the longest class/variable/property/method names possible. Keep in mind, we try to be good boys and girls and keep ...
3
votes
5answers
267 views

Is “World” reserved Class name in AS3?

Does anyone knows something about "World" being reserved or built in class with that name? when I try to construct the World class I've created it throws compile error: 1136: Incorrect number of ...
3
votes
2answers
2k views

Prefixing JAXB generated classes

I have this Maven "task" to generate Java classes from an XSD file using JAXB. <!-- XML to Java classes --> <plugin> <groupId>com.sun.tools.xjc.maven2</groupId> ...
3
votes
11answers
184 views

What resources do you use to help you decide upon useful names for your classes and methods?

With the exception of this site, what resources are out there that I don't know about for naming of things in your code? We all know that a good name can really focus your understanding of something ...
2
votes
6answers
274 views

Is it possible to have two classes with the same name if they're in different folders?

I was wondering if there is anything wrong with having two classes with the same name in PHP if they're in different sub folders? -- Other than the obvious 'Human Factor' of editing the wrong file by ...
1
vote
1answer
27 views

Sonar and Flex plugin - Dollars ($) are not accepted in java class names

In reference to this bug from Sonar: http://jira.codehaus.org/browse/SONAR-1865 and this one (which cross references the one above): http://jira.codehaus.org/browse/SONAR-1637 I am still seeing this ...
1
vote
2answers
62 views

How can I compare an object with the parent class in php?

I want to compare the class of an object with the current class, and in inherited methods to refer to the parent class. This is the only way I can think of doing it: class foo { function ...
0
votes
5answers
62 views

jQuery period in class name stored in var

I have this code: var imgId = this.id; //file1.jpg and this: $('.img\\' + imgId).remove(); So the problem is, i cant escape the '.' because its in the var, not before. What can i do?
0
votes
1answer
60 views

Name a class which contains other dependent classes

I have a class which will contain list of two dependent classes inside it. example Class ActivityHolder{ private ArrayList activityList; private ArrayList promiseList; } My question is how ...
0
votes
3answers
1k views

Is there an elegant way to add multiple HTML classes with XSLT?

Let's say I'm transforming a multiple-choice quiz from an arbitrary XML format to HTML. Each choice will be represented as an HTML <li> tag in the result document. For each choice, I want to add ...
0
votes
2answers
120 views

load page acording to class names

I've got code like this on my page: <div class="item item_wall id1"></div> <div class="item item_wall id2"></div> <div class="item item_wall id3"></div> <div ...
0
votes
1answer
218 views

Class Name in Windows Forms

I wonder about dynamically changing of class name in .NET application. For example WindowsForms10.SysTreeView32.app.0.19fd5c7. The last string "19fd5c7" would change, but I don't know what makes it ...