Changeset 22811


Ignore:
Timestamp:
09/09/10 09:59:08 (17 months ago)
Author:
dbutano
Message:

Checkstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mnw21/pathquery_refactor/intermine/web/main/src/org/intermine/web/logic/query/DisplayConstraint.java

    r22747 r22811  
    717717    } 
    718718 
     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     */ 
    719723    public boolean isInputFieldDisplayed() { 
    720724        if (con != null) { 
     
    726730            } 
    727731            if (selectedOperator == 12 
    728                     || selectedOperator == 13){ 
     732                    || selectedOperator == 13) { 
    729733                if (con instanceof PathConstraintBag) { 
    730734                    return true; 
     
    743747    } 
    744748 
     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     */ 
    745754    public boolean isPossibleValuesDisplayed() { 
    746755        if (con != null) { 
     
    764773    } 
    765774 
     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     */ 
    766780    public boolean isMultiValuesDisplayed() { 
    767781        if (con != null) { 
    768782            int selectedOperator = getSelectedOp().getProperty(); 
    769783            if (selectedOperator == 12 
    770                     || selectedOperator == 13){ 
     784                    || selectedOperator == 13) { 
    771785                return true; 
    772786            } 
Note: See TracChangeset for help on using the changeset viewer.