Khadija Lokhandwala

Ranch Hand
+ Follow
since Sep 11, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Khadija Lokhandwala

Hi, I am learning Swing and was really stuck wit this
I have a JMenu Class named "Vertical Menu" which I have customised.
I have over ridden the setFont() method and it is working fine. I wanted to override the setPreferredSize() method too, but size was not reflecting. So I placed it in the "Vertical Menu"'s constructor. And it worked.

The question is: why did setPreferredSize() method work after placing it in the constructor?? if so then, how does the overridden method work.

P.S : setFont() was invoked on the VerticalMenu Object
i.e i did not do
VerticalMenu menu = new VerticalMenu();
menu.setFont();

Thank You
15 years ago
Hi,
Drop in a mail to wwho2contact@sun.com and ask them about it.
I also did the same, but I am yet to recieve a reply...
Has anyone got the t-shirt???

Thanks
Hi,
The correct answer should be C & E in this case.
Thanks
Hi,
when any role name is combined with an empty <auth-constraint/> tag, no one is given access.
So , in your case no one (not even Member) can access it.
Thanks
Hi Sudhakar,
The alphanumeric code under the hologram is your voucher number. This is what you should mention when you appear for the examination.

Thanks
Hi fellow ranchers,
Just returned from the Center. Pleased to tell you guys I Cleared SCWCD 5 with 91%...Feel really great about it after all the hard work..

Here's what I did:
1.Read HFSJ 1.4 thrice (awesome book!!!)
2.Read a bit of Charles Lyons (Thanks for the topic on tag files!)
3.Enthuware Mock Exams (1-7)
4.Coffee Cram Mock Exam : whatever they say about this exam is true. I took the Mock on Monday and scored 92%!! A point less than what I got on the real exam.
5.Spent time on the forum.
6.Read the Design Patterns Notes on SCWCD Links

A little Bit of the Exam
1.The time given was enough
2.I found 50% question very Simple. Only few of them were Real Brainers
3.There was a syntax error in one of the questions

<auth-constraint>Admin</auth-constraint>

was mentioned instead of

<auth-constraint>
<role-name>Admin</role-name>
</auth-constraint>



I would really like to thank the authors of HFSJ(Kathy, Bryan & Bert). Double thanks to Bryan for his tutorial on Dynamic Attributes.
Also thanks to all the ranchers who cleared my doubts

Looking forward to my certi & free t-shirt!!

Ciao
Hi,
When a attribute name is entered in [] brackets without quotes , it is evaluated as a map key,if its value is not there, it will print nothin on the output
Hi,
Swapna,That is correct.
If no <http-method> is specified in <web-resource-collection> element, then all the HTTP Methods are restrained and only roles mentioned in <auth-constraint> can access those resources.
Hello everyone,
I was understanding the <%@variable%> directive in tag Files.
I would be greatful if anybody could give me sample code or explain the name-from-attribute attribute of the <%@variabl %> directive.

Thank You
No. These are two different patterns with different purposes.
Front Controller : a central controller for handling all the requests
Intercepting Filter : for a particular request to perform a function

So, if you want to log each incoming request, you could put a filter.

I hope I cleared your doubt