Package net.cloudcodex.client.character.view

Examples of net.cloudcodex.client.character.view.CharactersNoteView


    List<CharacterNoteDTO> noteDTOList = characterCDO.getNotes();
    if (noteDTOList != null) {
      for (CharacterNoteDTO characterNoteDTO : noteDTOList) {
        int indexView = notesViewIndexed.get(characterNoteDTO
            .getAuthor());
        CharactersNoteView noteView = noteViews.get(indexView);
        noteView.refreshNote(characterNoteDTO.getContent());
        charactersNotesMap.put(characterNoteDTO.getAuthor(),
            characterNoteDTO);
      }
    }
View Full Code Here

TOP

Related Classes of net.cloudcodex.client.character.view.CharactersNoteView

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.