Originally posted by Matt DeLacey:
Hey All,
I've started doing all the JavaDoc stuff. I don't mind most
of it but I have an interface called DataClient. It is implemented by RemoteDataClient and LocalDataClient. All 3 of these have all the same methods. Do I have to put javadoc comments around all the methods of all 3 classes? Slowly...falling...asleep. Gosh, I appreciated the value of
good documentation, but it can be frustrating.
With Respect,
Matt DeLacey
Originally posted by Steve Wayne:
I got this as a response from someone to my recent posting about passing the scjd. Incredible!!
Hello Steve Wayne sir,
first of all i want to congractulate you on your brilliant success .
probabely you don't know me i am a javarancher as you are. i had passed scjp
with 96%. and downloaded the scjd assignment two month before. i enclosed
that assignment copy with this mail. actully i want your kind cooperation.
first of all i want to tell you some thing about me. i am a college student
i am in the final year of my engineering now. i am doing part time job to
continue my studies. when i download scjd assignment i feel that i can do
that. but after reading the instruction and objectives i feel that is not in
my limits. now i feel my 14000\-Rs ($250) will be wasted.
i can't explain you that how difficult was me for arrange that big money as
a student. can you please kindly give me your assignment so after studying
your way of implementing solution i also be able to make that assignment. i
know that sun microsystem has made an agreement with every candidate to not
to disclose their assignment and solution and every solution should be
unique. no one can copy else solution. but i promise you i didn't do my
assignment as you are. i just want to know how exacly the gui should be look
alike. i want to see how exactly can one implement that database server by
hand.i will be very greatful to you if you please give me your solution
regarding scjd assignment. i am not in the condition to lose my scjd fees.
because only i know that how exacly i collect that fees. and what i have to
do for that money. now because you are passed so i request(bag) you please
give me your solution. because i don't think that may cause any difficulti
to you and for me it will be a great help. please sir help me on the basis
of humanity . i will be very greatfull to you till my whole life . please
sir help me.
-Kanchan Sharma
His e-mail is kanchansharma@usa.com if you want to contact him.
Steve
Originally posted by joey phillip:
Congrats Abhjeet! you got a greate score!
1)Did you read any java design pattern books?
2)Could you please explain your RMI Design(local and network mode)
with respect
joey
Originally posted by Matt DeLacey:
Abjiheet,
Wow! Thanks a lot for the feedback. It's really helpful in quashing fears. I am VERY grateful. Hope all your hard work results in significant career advancement, or, if that's not your goal, personal satisfaction.
With Respect,
Matt
Originally posted by Matt DeLacey:
Abhijeet. Congratulations. You must feel great about that. If you don't mind it is really helpful to those of us here if you comment...don't give us any specifics, just answer things like:
1.) How long did it take you?
2.) Were you confident that you would pass?
3.) What did you feel was the weekest/strongest parts of your assignment?
4.) Why do you feel you lost the points that you did?
5.) Did you have any fears after taking written portion of exam?
6.) How much documentation did you have?
And anything else (nonspecific) that you think would be helpful..Thanks.
With Respect,
Matt DeLacey
Originally posted by Adrian Yan:
Congradulation!
Very good score!
Hope you will stay around to help out us the wannabes
Originally posted by Ray Smilgius:
I have JBuilder but its seems to add a dependency package. Is it better to perhaps to use a text editor I have found one that has built in Macros to allow compiling directly in the text GUI.I have found that applications can display a different behavior if not runned on a system without JBuilder. Any suggestions???
Thanks Ray
Originally posted by Ajit Kumar:
hi Guys,
The following is part of the comment block for the lock method.
" If the argument is -1, lock the whole database. "
Let us assume that client A issues a call to the lock method with -1 as argument (record number). It is possible for some of the records to be already locked by other clients at that moment.
How can client A lock the entire database(I mean all records)?. Does he have to wait indefinitely till he gets all records available for locking?.
i would appreciate your comments on this.
Thanks
Originally posted by Douglas Kent:
I am making the assumption that since the instructions did not talk about creating an administrative interface, the only user features we need to implment are lookup and flight booking. This would lead to a further assumption that since the interface is limited to these functions, the new database constructor for "Data" would never be needed in the user interface either. Am I going wrong here? Or is it implicit that since the add record method is implemented in "Data", we need to support that in the GUI?
Originally posted by joey phillip:
(1)Can anyone suggest me how to implement criteriaFind method to search for multiple fields like "Career='SpeedyAir',Destination='SFO'".
(2) How to design GUI for this search. by creating individual JTextField for everyfield or by creating general search
joey
Originally posted by Adrian Yan:
What type of algorithm should we implement? I'm kind of stuck at this point, I'm trying to find the correct algorithm.
Any help is welcome.
Originally posted by foolsee:
Hi, all.
I have some questions about criteriaFind().
1. I think we only need to implement this method for Origin airport
and Destination airport. Am I correct? Or should I do this for
every possible fieldName?
2. in any cases, should I use StringTokenizer to get fieldName or can
I just hard code it from DataSet?
3. I used Vector class to store DataInfo[], however mine looks like
it returns the last record not the record of the record number.
Could you tell me what is wrong?
Please comment.
Thank you in advance.
Jodie.
Originally posted by Douglas Kent:
Rajesh,
I think your approach mis-states the way "wait" works. Wait can only be called by a program in a synchronized block. It releases the lock on that object, allowing other threads that are blocked awaiting access to that object. For this to work, I believe that the object that has the lock would have to execute a synchronized code block that would have as a first item of business setting the lock flag. It would then execute the update, release the lock, then exit the synchronized code. Another thread that has been blocked awaiting access to the synchronized code would then be granted access, and set its lock, and so on. I think this will work, but with the synchonization providing the real locking mechanism, is there a need for some external (to the database) object that holds locks for each record?