* Creating a label. The name may be null identifying the label a place holder
* @param name
* @return
*/
private ISahitsComponent addLabel(String name) {
Label label = new Label(metic);
if (name!=null){
label.setText(name);
}
setFont(label);
add(label,new MaximalGridLayoutConstraints(ECellPosition.RIGHT));
return label;
}