Skip to content

Commit b365be5

Browse files
committedMay 13, 2025
iluwatar#1263 - creating interfaces for View and ViewHelper
1 parent a225935 commit b365be5

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.iluwatar.viewhelper;
2+
3+
public interface View<V> {
4+
5+
void render(V data);
6+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.iluwatar.viewhelper;
2+
3+
public interface ViewHelper<M, V> {
4+
V prepare(M source);
5+
}

0 commit comments

Comments
 (0)
Please sign in to comment.