Vedo questa notazione usata in tutta la documentazione e nelle discussioni su SWT, ma non ho ancora visto che sia effettivamente definita. Il commento on Stack Overflow di MarsAtomic mi fa pensare che sia solo l'oggetto associato a una chiamata di metodo, o è più complesso di questo?
Sembra non essere il caso, ma probabilmente non sto facendo qualcosa in qualche altro posto in SWT;).
Ecco un esempio per un metodo layout
della classe Composite
:
public void layout (boolean changed) {
checkWidget ();
if (layout == null) return;
layout (changed, false);
}
/**
* If the receiver has a layout, asks the layout to <em>lay out</em>
* (that is, set the size and location of) the receiver's children.
* If the changed argument is <code>true</code> the layout must not rely
* on any information it has cached about its children. If it
* is <code>false</code> the layout may (potentially) optimize the
* work it is doing by assuming that none of the receiver's
* children has changed state since the last layout.
...
**/