<?xml version="1.0" encoding="utf-8"?>
<Shell name="shell" descriptors="xworker.swt.widgets.Shell" text="ToolTip"
RESIZE="true" label="ToolTip">
<FillLayout name="shellFillLayout"></FillLayout>
<Group name="group" text="ToolTip" label="ToolTip">
<RowLayout name="rowLayout"></RowLayout>
<Button name="visibleButton" text="Visible" type="SWT.CHECK">
<Listeners>
<Listener name="visibleButtonSeleciton">
<GroovyAction>
<code><![CDATA[if(visibleButton.getSelection()){
toolTip.setVisible(true);
}]]></code>
</GroovyAction>
</Listener>
</Listeners>
</Button>
<ToolTip name="toolTip" BALLOON="false" text="Foxs vs Dogs."
message="The quick brown fox jumps over the lazy dog."></ToolTip>
</Group>
</Shell>