init();
}
protected void init() {
// create widgets
SButton saveButton = new SButton(new SAction(
ObjRelationshipInfoController.SAVE_CONTROL));
saveButton.setEnabled(true);
SButton cancelButton = new SButton(new SAction(
ObjRelationshipInfoController.CANCEL_CONTROL));
cancelButton.setEnabled(true);
SButton newRelButton = new SButton(new SAction(
ObjRelationshipInfoController.NEW_REL_CONTROL));
newRelButton.setEnabled(true);
SButton selectPathButton = new SButton(new SAction(
ObjRelationshipInfoController.SELECT_PATH_CONTROL));
selectPathButton.setEnabled(true);
STextField relationshipName = new STextField(25);
relationshipName.setSelector(ObjRelationshipInfoModel.RELATIONSHIP_NAME_SELECTOR);
SLabel currentPathLabel = new SLabel();