Arup Chowdhury

Greenhorn
+ Follow
since Jan 20, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Arup Chowdhury

Hi Rajesh
I have also just uploaded my project and given my exam. Whom should i write a precautionary email as to check whether
* my assignment has been uploaded properly.
* my exam has been uploaded from the prometric centre ( i dont trust the centre, esp from where i gave the exam )
With Regards
Arup
23 years ago
Hi
Actually the on getting some cue from the GUI (View) the controller updates the Model. The controller acts as a a mediator between view and the model, thus mediator pattern.
The moment the model changes its state the view comes to know about it, as it has subscribed itself as an observer. thus, Observer pattern.
you ofcourse need not implement these patterns urself as they are inbuilt into the swing components
Regards
Arup
Hi
There are some more coding convention guides on the net. Follow the newer vesion. The one on Sun s site is pretty old.
try this. this one is relatively newer
http://www.ambysoft.com/javaCodingStandards.html
With Regards
Arup
Try using some Tool which performs Javadoc tests ie it tests whether You have implemented Javadoc comments correctly or not. It is helpful in case we miss out somewhere.
Forte is one such tool
Regards
Arup
Hi all
I am running an application which is running fine on Windows but when i tested it on Linux RedHat 7.1 it gives the following error
On giving the command to execute,
java -Djava.security.policy=FBNServer.policy -jar server.jar
it threw the exception
Exception in thread "main" java.util.Zip.ZipException and didnt run.
I just can t figure out, where is the problem
Regards
Arup
23 years ago
CriteriaBuilder/Finder method will be using some kind of an Algorithmn. Instead of directly putting the algoritmn in the Data class, I have created a criteriaFinder class to the work.
Advantages is loose coupling between the Data class and the Algorithm used, and also ability to add and remove algorithms.
This is a combination of Functor Pattern and Strategy Pattern
Regards
Arup
Hi all
My application is running fine on Windows but when i tested it on Linux RedHat 7.1
On giving the command to execute,

java -Djava.security.policy=FBNServer.policy -jar server.jar
it threw the exception
Exception in thread "main" java.util.Zip.ZipException and didnt run.
Regards
Arup
Hi All
I have a peculiar problem. I am using a JTable where the client can enter Passenger Data.
Suppose there are 5 fields where data needs to be entered. After entering all the data. when the client clicks on a button 'book' - i am unable to retrieve the data using
String value = (String)clientTable.getValueAt(0, i);
This because I am able to retrieve the value only after that cell has lost focus.
But logically a client might not want to put in an additional tab or a click since he has already entered the data.
Is there any way to around this problem. Please advice urgently
Regards einstien
Hi
I have a requirement of printing numerous reports haveing different no of columns. The printing has to be done on the basis of a single click.
I was thinking to putting each type of a report in a single Jtable. My requirement is that can we put multiple JTables in a single scroll pane.
Also what is the best solution to this problem
Any Ideas
Regards
Einstien
23 years ago
Congrats ........
Could you give us some more details about your preparation, design choices etc.
Regards
Einstien