Package org.olat.core.gui.components.table

Examples of org.olat.core.gui.components.table.DefaultTableDataModel


  private void showMoveMessageView(UserRequest ureq) {
    if (focallback.mayEditMessageAsModerator()) {
      //prepare the table data
      msgs = fm.getMessagesByForum(forum);
      threadList = prepareListTitles(msgs);
      DefaultTableDataModel tdm = new DefaultTableDataModel(threadList) {
       
          @Override
          public Object getValueAt(int row, int col) {
            Message m = threadList.get(row);
            boolean isSource = m.equalsByPersistableKey(currentMsg.getThreadtop());
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.table.DefaultTableDataModel

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.