Package net.sf.wicketdemo.app.wicketpages.component

Examples of net.sf.wicketdemo.app.wicketpages.component.SingleAuthorComponent


    final Form form = new BookForm("bookForm", bookModel);
   
    final TextField titleField = new TextField("title");
    form.add(titleField);
    final Set<Person> authors = book.getAuthors();
    form.add(new SingleAuthorComponent("singleAuthorComponent", //
        new Model(CollectionUtils.isEmpty(authors) ? null : authors.iterator().next())));
   
    add(form);
  }
View Full Code Here

TOP

Related Classes of net.sf.wicketdemo.app.wicketpages.component.SingleAuthorComponent

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.