Package org.olat.admin.properties

Source Code of org.olat.admin.properties.PropertiesTableDataModel

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.admin.properties;

import java.util.List;

import org.olat.core.gui.components.table.DefaultTableDataModel;
import org.olat.core.id.Identity;
import org.olat.properties.Property;

/**
*  Description:<br>
*
*
* @author Alexander Schneider
*/
public class PropertiesTableDataModel extends DefaultTableDataModel {


  /**
   * Default constructor.
   */
  public PropertiesTableDataModel() {
    super(null);
  }

  /**
   * Initialize table model with objects.
   * @param objects
   */
  public PropertiesTableDataModel(List objects) {
    super(objects);
  }
 
  /**
   * @see org.olat.core.gui.components.table.TableDataModel#getColumnCount()
   */
  public int getColumnCount() {
    // resourceTypeName, resourceTypeId, category, name, floatValue, stringValue, textValue
    return 11;
  }
 
 
  /**
   * @see org.olat.core.gui.components.table.TableDataModel#getValueAt(int, int)
   */
  public final Object getValueAt(int row, int col) {
    Property p = (Property)objects.get(row);
    switch(col) {
      case 0:
        Identity id = p.getIdentity();
        return ((id != null) (p.getIdentity().getName()): (null));
      case 1:
        return p.getResourceTypeName();
      case 2:
        return p.getResourceTypeId(); // may be null; in this case, the table renders nothing for this cell;
      case 3:
        return p.getCategory();
      case 4:
        return p.getName();
      case 5:
        return p.getFloatValue();
      case 6:
        return p.getStringValue();
      case 7:
        return p.getTextValue();
      case 8:
        return p.getCreationDate().toString();
      case 9:
        return p.getLastModified().toString();
      case 10:
        return p.getLongValue();
      default: return "error";
    }
  }
 
 
}
  
TOP

Related Classes of org.olat.admin.properties.PropertiesTableDataModel

TOP
Copyright © 2018 www.massapi.com. 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.