Advanced Search
Search Results
67 total results found
Specification
Figure 2 Let's consider the example of an email application. Figure 2 presents a sketch of the Preview of an archived message window function. The user stories corresponding to the menu are as follows: As a user I want to view my previous message, so ...
Use case diagram
Use Case Diagram has been implemented based on system functions, each use case represents each function, ,,Present the archived message" use case is at the top of the diagram directly linked to the actor ,,USER". This indicates a association relationship rep...
Identification of data structures
Data structures - example implementation
import array import datetime from email import message from sqlite3 import Date from xmlrpc.client import DateTime class Archived_Message: id_message : int() data : datetime() title : str() message : str() Attachements : array...
Identification of system functions
System functions: Present the archived message View recipients View e-mail adresses Delete the archived message Resend the message
The service interface
Implemented in the Go programming language (If it can't be searched up try Golang) import ( "uuid" "enmime" ) type RecipentsList []Recipent type RecievingPersonTrie struct { Name string Surname string EmailAddress string } ty...
Use case scenarios
Present the archived message: main flow (main scenario): 1. The user clicks on selected message from the archived message lists 2.The system opens the "Present the archived message" view. 3.The system displays the details of the archived message. The displ...