|
| SubtaskViewVM () |
|
void | init (@ExecutionArgParam("issue") Issue issue) |
|
void | showInfo (@BindingParam("taskItem") TaskItem taskItem, @BindingParam("component") Component component, @BindingParam("position") String position) |
|
void | showIssue (@BindingParam("issue") Issue issue) |
|
void | update () |
|
void | showAttachments (@BindingParam("issue") Issue issue) |
|
void | addInformation (@BindingParam("issue") Issue issue) |
|
void | addSubtask (@BindingParam("issue") Issue issue) |
|
Collection< TaskItem > | getModel () |
|
◆ SubtaskViewVM()
org.turro.dossier.task.SubtaskViewVM.SubtaskViewVM |
( |
| ) |
|
Definition at line 49 of file SubtaskViewVM.java.
50 Application app = Application.getApplication();
51 show = app.isInRole(
"issue:show");
52 all = app.isInRole(
"issue:all");
53 addNew = app.isInRole(
"issue:new");
◆ addInformation()
void org.turro.dossier.task.SubtaskViewVM.addInformation |
( |
@BindingParam("issue") Issue |
issue | ) |
|
Definition at line 89 of file SubtaskViewVM.java.
91 DossierMenu.addInformation(issue, (Context context) -> {
92 BindUtils.postNotifyChange(
null,
null,
SubtaskViewVM.this,
"model");
ParticipantSet getFullParticipants()
◆ addSubtask()
void org.turro.dossier.task.SubtaskViewVM.addSubtask |
( |
@BindingParam("issue") Issue |
issue | ) |
|
Definition at line 99 of file SubtaskViewVM.java.
101 DossierMenu.addSubtask(issue, (Context context) -> {
102 BindUtils.postNotifyChange(
null,
null,
SubtaskViewVM.this,
"model");
◆ getModel()
Collection<TaskItem> org.turro.dossier.task.SubtaskViewVM.getModel |
( |
| ) |
|
Definition at line 108 of file SubtaskViewVM.java.
110 return Tasks.from(issue,
false,
false).getFilledFlat();
112 return Collections.EMPTY_LIST;
◆ init()
void org.turro.dossier.task.SubtaskViewVM.init |
( |
@ExecutionArgParam("issue") Issue |
issue | ) |
|
◆ showAttachments()
void org.turro.dossier.task.SubtaskViewVM.showAttachments |
( |
@BindingParam("issue") Issue |
issue | ) |
|
Definition at line 79 of file SubtaskViewVM.java.
81 AttachmentControl ac =
new AttachmentControl();
83 SelectionDialog.showComponent(Framework.getCurrent().getPage(), I_.get(
"Attachments"),
84 ac,
"80%",
"80%",
null);
◆ showInfo()
void org.turro.dossier.task.SubtaskViewVM.showInfo |
( |
@BindingParam("taskItem") TaskItem |
taskItem, |
|
|
@BindingParam("component") Component |
component, |
|
|
@BindingParam("position") String |
position |
|
) |
| |
Definition at line 62 of file SubtaskViewVM.java.
64 if(show && (all || taskItem.getIssue().getFullParticipants().isParticipant())) {
65 DossiersInfo.popup(taskItem.getIssue());
◆ showIssue()
void org.turro.dossier.task.SubtaskViewVM.showIssue |
( |
@BindingParam("issue") Issue |
issue | ) |
|
◆ update()
void org.turro.dossier.task.SubtaskViewVM.update |
( |
| ) |
|
The documentation for this class was generated from the following file: