Changeset 17942

Show
Ignore:
Timestamp:
08/24/08 20:23:23 (3 months ago)
Author:
tincholiguori
Message:

project space properties changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/core/src/net/project/project/DomainListBean.java

    r17908 r17942  
    489489    } 
    490490 
    491     public String getValuesOptionListForProperty(Integer propertyId) { 
     491    public String getValuesOptionListForProperty(Integer propertyId, String selected) { 
    492492        IPnProjectSpaceMetaValueService service = ServiceFactory.getInstance().getPnProjectSpaceMetaValueService(); 
    493493        List<PnProjectSpaceMetaCombo> metaCombos = service.getValuesOptionListForProperty(propertyId); 
    494494         
    495         return HTMLOptionList.makeHtmlOptionList(metaCombos); 
     495        return HTMLOptionList.makeHtmlOptionList(metaCombos, selected); 
    496496    } 
    497497