Package mediateca.action.beans

Examples of mediateca.action.beans.Author


    authorsSelected=new ArrayList<String>();
    this.authorsSelected.add("2");
    //String json = JsonUtils.fromJavaToJson(authorsSelected);
   
    authorsList = new ArrayList<Author>();
    authorsList.add(new Author("1", "Alberto", "Vazquez Figueroa"));
    authorsList.add(new Author("2", "Javier", "Sierra"));
    authorsList.add(new Author("3", "Iker", "Jimenez"));
    authorsList.add(new Author("4", "Santiago", "Camacho"));

    authors = new HashMap<String, String>();
    for (Author currentAuthor : authorsList) {
      authors.put(currentAuthor.getId(), currentAuthor.getCompleteName());
    }
View Full Code Here

TOP

Related Classes of mediateca.action.beans.Author

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.