Package net.sf.wicketdemo.service

Examples of net.sf.wicketdemo.service.DataStore


    final ListView<DataStore> lv = new ListView<DataStore>("dataStores", Arrays.asList(DataStore.values())) {
      private static final long serialVersionUID = 1L;
     
      @Override
      protected void populateItem(final ListItem<DataStore> item) {
        final DataStore ds = item.getModelObject();
       
        final DisplayMapPanel displayMapPanel = new DisplayMapPanel("dataStore");
        item.add(displayMapPanel);
        displayMapPanel.setTitle("DataStore[" + ds.toString() + "]:");
        displayMapPanel.setMap(ds.getDataMap());
      }
    };
    add(lv);
  }
View Full Code Here

TOP

Related Classes of net.sf.wicketdemo.service.DataStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.