-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacultad.puml
59 lines (57 loc) · 1.23 KB
/
Facultad.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@startuml
class Entidad.Estudiante {
# String curso
+ String getCurso()
+ void setCurso(String)
+ void matricular()
+ String toString()
}
class Entidad.PersonalDeServicio {
# String seccion
+ String getSeccion()
+ void setSeccion(String)
+ void trasladarSeccion()
+ String toString()
}
class Entidad.Persona {
# String nombre
# String apellidos
# int identificacion
# String estadoCivil
~ Scanner leer
+ String getNombre()
+ void setNombre(String)
+ String getApellidos()
+ void setApellidos(String)
+ int getIdentificacion()
+ void setIdentificacion(int)
+ String getEstadoCivil()
+ void setEstadoCivil(String)
+ void cambiarEstadoCivil()
+ String toString()
}
class Entidad.Empleados {
# int anioIncorp
# int numDespacho
+ int getAnioIncorp()
+ void setAnioIncorp(int)
+ int getNumDespacho()
+ void setNumDespacho(int)
+ void reasignarDespacho()
+ String toString()
}
class Entidad.Profesores {
# String departamento
+ String getDepartamento()
+ void setDepartamento(String)
+ void cambioDeDepartamento()
+ String toString()
}
class Ejerc04 {
+ {static} void main(String[])
}
Entidad.Persona <|-- Entidad.Estudiante
Entidad.Empleados <|-- Entidad.PersonalDeServicio
Entidad.Persona <|-- Entidad.Empleados
Entidad.Empleados <|-- Entidad.Profesores
@enduml