Is it better to have multiple lists or a single list? Currently I am using three lists to better organize a class I have for a project I am helping with. These three lists all hold the same class type but have different purposes and to be used at different times in the program. I originally split it up so I can easily distinguish between the classes in a JAXB xml generated file and to help with a module i created in netbeans, however I realized it could possibly be less taxing if i simply subclass say ArrayList (or if i put them in the correct order they will be used I could use LinkedList) and put all of the objects from the other three lists in it and simply add a method in the class going into the Array to help specify what type of class it is ie Passive Active Contact, I could also add three methods that would create smaller lists holding only the objects of one of the three types mentioned above. Right now the average size for all three lists together is about 6 to 10 What would be the best way to handle this should I leave it as is or create a large list of classes?
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...