Convert text to UML. Access here!
Aluno
extends Pessoa
implements Nomeavel <Interface>, Identificavel <Interface>
---
- turmas: List<Turma>
- nome: str
- nasc: int
---
+ Aluno(nome: str)
+ Aluno(nome: str, nasc: int)
+ setNome(nome: str): void
+ getNome(): str
+ getId(): int
---
There are three parts when modelling a class:
- Class name (and its relationships)
- Attributes
- Methods (including constructors)
Each part is separeted with at least 3 dashes (---
). There is also 3 dashes at the end of a class.
There are five types of relationships among classes:
- extends
- implements
- association
- directionalAssociation
- composes
- aggregates
There are three types of visibilities that can be used on attributes and methods.
- private
-
- public
+
- protected
#
You can also define class scope attributes and methods by adding a static modifier after visibility:
- static
Use any HTTP server to run modeligado in your computer:
- javascript: serve
- python:
python -m http.server 5000
Then go to http://localhost:5000/edit.html (change the port 5000 if needed)