Tagged Questions
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 ...
0
votes
2answers
62 views
Which name is more correct in my case: manager or factory (or something else)?
I have next code:
PhotoFactory factory = PhotoFactory.getFactory (PhotoResource.PICASA);
PhotoSession session = factory.openSession (login, password);
PhotoAlbum album = factory.createAlbum ();
Photo ...