Re: [webkit-dev] Confusion about Webkit method naming convention

2009-06-10 Thread Adam Barth
Usually did() is a notification that something already happened, and you might want to respond to that in some way. For example, didReceiveRedirect means that we already got a redirect from the network. The implementor of that method might want to do something about it, like check the phishin

[webkit-dev] Confusion about Webkit method naming convention

2009-06-10 Thread Meryl Silverburgh
Hi, In Java naming convention, it names method boolean isX() // return certain condition is true or not void doX() // perform some operation but in Webkit, its naming convention is void didX() what does that mean? does that method it is already done with doing X and did() is