Skip to content

Спроектировать модель данных #4

Open
@DanilaMa

Description

В задаче #3 я предложил у же первую сущность в нашей доменной модели:

    public class Memo {
    private String text;
    private long count;

    public Memo(String text) {
      this.text = text;
      this.count = 0; 
    }

    public String getText(){
      return text; 
    }

    public long getCount(){
      return count; 
    }

    public long addToCount(long value){
      count = count + value 
      return count; 
    }
  }  ```

В рамках этой задаче нужно продумать какие еще сущности нам понадобятся и взаидествия / отношения между ними 

результат можно оформить в виде  UML Class Diagramm например с использованием plantuml 
http://www.planttext.com/planttext

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions