Skip to content

Commit

Permalink
feat[Wrapper]: add abstract class for wrappers
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucy Ciara Herud-Thomassen authored and Lucy Ciara Herud-Thomassen committed Mar 1, 2026
1 parent 7b02f57 commit 58965ef
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/main/java/edu/group5/app/control/Wrapper.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package edu.group5.app.control;

public class Wrapper {

abstract class Wrapper {
protected Object data;

protected Wrapper() {
}

public abstract boolean importData();
}

0 comments on commit 58965ef

Please sign in to comment.