Since 4/2/2012 5:57:05 AM, brazil has written 3 articles and participated in 1202 conversations. brazil signature: brazil
brazil's articles:
Items(3) /1
No repaints / frozen GUI3100 (2/11/2005 2:24:31 PM) comp.lang.java.gui No, I'm *not* doing a lengthy task/blocking operation on the EDT. But my Swing GUI still stops repainting. This is part of a pretty big Swing fat client app that's still being developed on Java 1.3 because it ... brazzy
Generics: how to avoid overloaded methods?526 (12/2/2004 2:54:56 PM) comp.lang.java.programmer I'm currently using generics quite intensively and have run into a problem with the following configuration: class DataBase{} class DataSub extends DataBase{} class ControllerBase{ void method(D d); } class... Michael
Empty stack trace/method call from nowhere?326 (9/29/2004 1:45:30 PM) comp.lang.java.programmer I sometimes use constructs like this: new Exception().printStackTrace(System.out); for debugging, in order to find out where a problematic call came from. Now I've encountered a case where it seems the call c... Michael
DAO patterns in the "Real World"1328 (1/4/2005 2:48:07 PM) comp.lang.java.programmer Hi I've recently been looking at the DAO pattern. All the tutorials I have seen so far deal with small, simple databases that maintain students or CD collections and always build java objects that contain all ... roger_varley1(2)
How to subtract dates ?522 (1/4/2005 9:59:04 PM) comp.lang.java.programmer Date date_one; Date date_two; Dates have this format 2004.10.12 How to subtract it and get result in days. Or Calendar date_1 = Calendar.getInstance(); Calendar date_2 = Calendar.getInstance(); How to ... adres(1)
Expanding on Video Formats422 (1/4/2005 10:28:57 PM) comp.lang.java.programmer I'm wondering if somebody with java knowledge will be able answer my question. Would it be within the realms of possibility to create a web-based video editing suite? (Which media format -- Windows, Quicktim... doctor_meticulous(3)
which data structure628 (1/5/2005 1:24:14 AM) comp.lang.java.programmer Following is my data Age Dollars 0-15 100 16-30 200 31-67 300 68-91 400 Now given an age, I have to search for dollars. Any nice and efficient way to do this? Any data struct... mank172002(11)
4/3/2028 and Date Calculations1126 (1/5/2005 2:33:38 PM) comp.lang.java.programmer Recently working on an application that looks forward. When performing the following: cDays = (inputDate.getTime() - calendarStart.getTime())/(1000*60*60*24) The resulting value is 1... cDays is declared a... b06ahb
hibernate to legacy DB with no ID columns832 (1/14/2005 1:31:38 PM) comp.lang.java.programmer I want to use hibernate to get into a legacy database in Oracle 9i however most of the tables do not have an "id" field, i.e. a row id field of some type. Is there a technique that will allow access? ... willirl1(25)
server push w java technologie121 (1/14/2005 2:21:42 PM) comp.lang.java.programmer Hello, I wish that when ther is new information available that the page of te website refresh immediatly. Normally the most pages do it with a refresh method (polling or pull), I prefer the push method, onl... dick34(2)
sessionBean vs EntityBean432 (1/15/2005 1:35:20 AM) comp.lang.java.programmer I'm a first time java programmer and I'm going to program a webbased application. I see everywhere the standard example of Enterprise Beans, shoppingCart is a sessionBean, and userAccount is an EntityBean. But ... schemer(10)
Internationalisation and Unicode224 (1/15/2005 1:52:02 PM) comp.lang.java.programmer Dear Sir/Madam, Can anybody tell me how Java is helpful in using Non-English and complex languages like Devnagari (from INDIA), Chinese, Urdu etc. in designing GUI interfaces for the programmes? It is said that... sameer75(59)