BrightSide Workbench Full Report + Source Code
org.turro.contacts.importer.ImporterVM Class Reference

Public Member Functions

void upload (@BindingParam("medias") Media medias[])
 
void validate (@BindingParam("relation") ImporterEntry entry)
 
void delete (@BindingParam("relation") ImporterEntry entry)
 
boolean isSendWelcome ()
 
void setSendWelcome (boolean sendWelcome)
 
List< ImporterEntrygetModel ()
 

Detailed Description

Member Function Documentation

◆ delete()

void org.turro.contacts.importer.ImporterVM.delete ( @BindingParam("relation") ImporterEntry  entry)

Definition at line 74 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

74  {
75  model.remove(entry);
76  }

◆ getModel()

List<ImporterEntry> org.turro.contacts.importer.ImporterVM.getModel ( )

Definition at line 171 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

171  {
172  return model;
173  }

◆ isSendWelcome()

boolean org.turro.contacts.importer.ImporterVM.isSendWelcome ( )

Definition at line 82 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

82  {
83  return sendWelcome;
84  }

◆ setSendWelcome()

void org.turro.contacts.importer.ImporterVM.setSendWelcome ( boolean  sendWelcome)

Definition at line 86 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

86  {
87  this.sendWelcome = sendWelcome;
88  }

◆ upload()

void org.turro.contacts.importer.ImporterVM.upload ( @BindingParam("medias") Media  medias[])

Definition at line 60 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

60  {
61  for(Media media : medias) {
62  model = new ArrayList<>(buildFromCSV(Medias.toReader(media)));
63  }
64  }
Here is the call graph for this function:

◆ validate()

void org.turro.contacts.importer.ImporterVM.validate ( @BindingParam("relation") ImporterEntry  entry)

Definition at line 68 of file contacts/src/main/java/org/turro/contacts/importer/ImporterVM.java.

68  {
69  processRelation(entry);
70  }

The documentation for this class was generated from the following file: