Skip to content

Commit

Permalink
Merge pull request #473 from agoncal/FORGE-1879
Browse files Browse the repository at this point in the history
Implemented FORGE-1879
  • Loading branch information
gastaldi committed Jun 16, 2014
2 parents 4154878 + 23af58e commit 9be185c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions javaee/faces/src/main/resources/scaffold/faces/BackingBean.jv
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ public class ${entity.getName()}Bean implements Serializable {
return this.${ccEntity};
}

public void set${entity.getName()}(${entity.getName()} ${ccEntity}) {
this.${ccEntity} = ${ccEntity};
}

@Inject
private Conversation conversation;

Expand Down

0 comments on commit 9be185c

Please sign in to comment.