Craig Raw
5 years ago
2 changed files with 53 additions and 3 deletions
@ -0,0 +1,37 @@ |
|||
package com.sparrowwallet.sparrow; |
|||
|
|||
import java.io.File; |
|||
|
|||
public class TabData { |
|||
private TabType type; |
|||
private File file; |
|||
private String text; |
|||
|
|||
public TabData(TabType type) { |
|||
this.type = type; |
|||
} |
|||
|
|||
public TabType getType() { |
|||
return type; |
|||
} |
|||
|
|||
public File getFile() { |
|||
return file; |
|||
} |
|||
|
|||
public void setFile(File file) { |
|||
this.file = file; |
|||
} |
|||
|
|||
public String getText() { |
|||
return text; |
|||
} |
|||
|
|||
public void setText(String text) { |
|||
this.text = text; |
|||
} |
|||
|
|||
public enum TabType { |
|||
TRANSACTION |
|||
} |
|||
} |
Loading…
Reference in new issue