});
}
private void createOptionsGroup() {
IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS | RectangleGroupStrategy.ROUNDED);
PGroup optionsPGroup = new PGroup(this, groupStrategy);
optionsPGroup.setText("Op��es");
optionsPGroup.setBackground(new Color(null, 133, 147, 194));
optionsPGroup.setForeground(new Color(null, 255, 255, 255));
optionsPGroup.setImage(new Image(null, "img/opcoes_central.png"));
FormData data = new FormData();
data.right = new FormAttachment(100, 0);
data.top = new FormAttachment(choseModePGroup, 10);
data.left = new FormAttachment(pGroupSecurityTable, 10);
optionsPGroup.setLayoutData(data);
groupBody = optionsPGroup.getBody();
FormLayout formLayout = new FormLayout();
formLayout.marginHeight = 5;
formLayout.marginWidth = 1;
groupBody.setLayout(formLayout);