Skip to content

Commit a65ca98

Browse files
feat(practicaLineUp): 'Layout' class was updated
'Formateador' interface was implemented and 'darFormato' method was overrided
1 parent fabe417 commit a65ca98

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

practicaLineUp/src/Layout.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
import java.util.ArrayList;
2+
13
/**
24
* This class describe the Layout of each part of the announcement
35
*
46
* @author: Ricardo
57
* */
68

7-
public class Layout {
8-
9+
public class Layout implements Formateador{
910

1011

12+
@Override
13+
public String darFormato(ArrayList<Banda> bandas) {
14+
return null;
15+
}
1116
}

0 commit comments

Comments
 (0)