-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2164f82
commit e28d9f2
Showing
4 changed files
with
34 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
|
||
import java.io.Serial; | ||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
/** | ||
* @author Bruno Ferreira <[email protected]> | ||
|
@@ -17,6 +18,7 @@ public class ViewerCell implements Serializable { | |
@Serial | ||
private static final long serialVersionUID = -5345114836590659380L; | ||
private String value; | ||
private List<String> listValue; | ||
private String mimeType; | ||
private String fileExtension; | ||
private ViewerLobStoreType storeType; | ||
|
@@ -53,6 +55,19 @@ public void setValue(String value) { | |
this.value = value; | ||
} | ||
|
||
/** | ||
* Gets the value of this cell as list of strings | ||
* | ||
* @return the value or null if the database cell value was NULL | ||
*/ | ||
public List<String> getListValue() { | ||
return listValue; | ||
} | ||
|
||
public void setListValue(List<String> listValue) { | ||
this.listValue = listValue; | ||
} | ||
|
||
public String getMimeType() { | ||
return mimeType; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters