Buddhima / Weave-D

Main configuration server side application of Weave-D project
Other
0 stars 0 forks source link

Load necessary parameters to 2 combo boxes (level and links) in Query UI (Adjacent to extract feature button) #10

Closed thushv89 closed 11 years ago

thushv89 commented 11 years ago

Level combo box has Perception/Feature and Dimension that's fixed But the links combo box must load the necessary links dynamically belonging to the selected level. For this you can use the followng method, getLinksForQueryUI(linkConfModel, level) in perceptionFacade : ArrayList

This method basically gives all the links (cross feature and temporal) in a given level as a String arraylist.

You've to "somehow" call ths from the queryTopComponent

thushv89 commented 11 years ago

QueryTopComponent

actionperformed(){ weavedMain.getCrossAndTempLinksInLevel (PercpModelEnum level) } WeaveDMain getCrossAndTempLinksInLevel (PercpModelEnum level){ getLinksForQueryUI (linkConfModel, PercpModelEnums level) }