Code:
'Below code works in my weblist, similarly try for your java list.
txt=browser("browser").page("page").weblist("select").getroproperty("innerhtml")
arr=split(txt,"</OPTION>")
set disabled_items=createobject("system.collections.arraylist")
for each i in arr
if instr(1,i,"disabled")<>0 then
disabled_items.add mid(i,instr(1,i,">")+1,len(i))
end if
next
ai=browser("browser").page("page").weblist("select").getroproperty("all items")
set all_items=createobject("system.collections.arraylist")
ar=split(ai,";")
for each i in ar
all_items.add i
next
for each i in disabled_items
all_items.remove (i)
next
for each i in all_items
msgbox i
next
set disabled_items=nothing
set all_items=nothing