Package org.intermine.web.logic.results
Class BagUploadConfirmInlineResultsTableRow
- java.lang.Object
-
- org.intermine.web.logic.results.InlineResultsTableRow
-
- org.intermine.web.logic.results.BagUploadConfirmInlineResultsTableRow
-
public class BagUploadConfirmInlineResultsTableRow extends InlineResultsTableRow
Used on BagUploadConfirmIssueController (List upload confirm step) to add an identifier the user was trying to resolve with the number of rows in the ResultsTable corresponding to the said identifier.- Author:
- radek
-
-
Constructor Summary
Constructors Constructor Description BagUploadConfirmInlineResultsTableRow()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getIdentifier()
Used from JSPjava.lang.Integer
getRowSpan()
Used from JSP in rowspan attr ofjava.lang.Boolean
getShowIdentifier()
Used from JSPvoid
setIdentifier(java.lang.String identifier)
Set identifiervoid
setRowSpan(java.lang.Integer rowSpan)
Set how many rows this identifier spansvoid
setShowIdentifier(java.lang.Boolean showIdentifier)
Set to show the identifier in this row-
Methods inherited from class org.intermine.web.logic.results.InlineResultsTableRow
add, getClassName, getItems, getObjectId, setClassName, setObjectId
-
-
-
-
Method Detail
-
setShowIdentifier
public void setShowIdentifier(java.lang.Boolean showIdentifier)
Set to show the identifier in this row- Parameters:
showIdentifier
- switch
-
getShowIdentifier
public java.lang.Boolean getShowIdentifier()
Used from JSP- Returns:
- true if we have an identifier set, ie the first row of a table that corresponds to an identifier we have tried to upload
-
setIdentifier
public void setIdentifier(java.lang.String identifier)
Set identifier- Parameters:
identifier
- to be set
-
getIdentifier
public java.lang.String getIdentifier()
Used from JSP- Returns:
- identifier the user uploaded, check with getShowIdentifier() first
-
setRowSpan
public void setRowSpan(java.lang.Integer rowSpan)
Set how many rows this identifier spans- Parameters:
rowSpan
- Integer
-
getRowSpan
public java.lang.Integer getRowSpan()
Used from JSP in rowspan attr of- Returns:
- number of rows this identifier spans
-
-