Skip to content

Instantly share code, notes, and snippets.

@gregori
Last active March 30, 2021 21:41
Show Gist options
  • Save gregori/c13f0ccd07bf58ddf2bd0f1471694ec9 to your computer and use it in GitHub Desktop.
Save gregori/c13f0ccd07bf58ddf2bd0f1471694ec9 to your computer and use it in GitHub Desktop.
20210320 - Avaliação Revisão de Java
@startuml
skinparam classAttributeIconSize 0
class Circule {
-raio: double = 1.0
-cor: String = "vermelho"
+Circulo()
+Circulo(raio: double)
+Circulo(raio: double, cor:String)
+getRaio(): double
+getCor(): String
}
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment