Changeset 22811
- Timestamp:
- 09/09/10 09:59:08 (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mnw21/pathquery_refactor/intermine/web/main/src/org/intermine/web/logic/query/DisplayConstraint.java
r22747 r22811 717 717 } 718 718 719 /** 720 * Return true if the input field can be displayed, method for use in JSP 721 * @return true if the input is displayed 722 */ 719 723 public boolean isInputFieldDisplayed() { 720 724 if (con != null) { … … 726 730 } 727 731 if (selectedOperator == 12 728 || selectedOperator == 13) {732 || selectedOperator == 13) { 729 733 if (con instanceof PathConstraintBag) { 730 734 return true; … … 743 747 } 744 748 749 /** 750 * Return true if the drop-down containing the possibleValues can be displayed, 751 * method for use in JSP 752 * @return true if the drop-down is displayed 753 */ 745 754 public boolean isPossibleValuesDisplayed() { 746 755 if (con != null) { … … 764 773 } 765 774 775 /** 776 * Return true if the multi-select containing the possibleValue can be displayed, 777 * method for use in JSP 778 * @return true if the multi-select is displayed 779 */ 766 780 public boolean isMultiValuesDisplayed() { 767 781 if (con != null) { 768 782 int selectedOperator = getSelectedOp().getProperty(); 769 783 if (selectedOperator == 12 770 || selectedOperator == 13) {784 || selectedOperator == 13) { 771 785 return true; 772 786 }
Note: See TracChangeset
for help on using the changeset viewer.
