Package org.cast.isi.panel

Source Code of org.cast.isi.panel.StudentSectionCompleteToggleTextLink

/*
* Copyright 2011 CAST, Inc.
*
* This file is part of the UDL Curriculum Toolkit:
* see <http://code.google.com/p/udl-curriculum-toolkit>.
*
* The UDL Curriculum Toolkit is free software: you can redistribute and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The UDL Curriculum Toolkit is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this software.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.cast.isi.panel;

import org.apache.wicket.model.IModel;
import org.cast.cwm.data.User;
import org.cast.cwm.xml.XmlSection;
import org.cast.isi.data.SectionStatus;

public class StudentSectionCompleteToggleTextLink extends
    SectionCompleteToggleTextLink {

  private static final long serialVersionUID = 1L;

  public StudentSectionCompleteToggleTextLink(String id,
      IModel<XmlSection> mSection, IModel<User> mTargetUser) {
    super(id, mSection, mTargetUser);
  }

  @Override
  public boolean isVisible() {
    return isEnabled() && super.isVisible();
  }

  @Override
  public boolean isEnabled() {
    return !isLocked();
  }
 
  @Override
  protected void handleClick() {
    sectionService.setCompleted(getUser(), sectionContentLocation, !isComplete());
  }

  @Override
  protected boolean isComplete() {
    SectionStatus status = sectionService.getSectionStatus(getUser(), sectionContentLocation);     
    if (status == null)
      return false;
    return status.getCompleted();
  }
 
  protected boolean isLocked() {
    SectionStatus status = sectionService.getSectionStatus(getUser(), sectionContentLocation);     
    if (status == null)
      return false;
    return status.getLocked();
  }
 
  protected String getLabelText() {
    if (isLocked())
      return getStringResource("isi.sectionToggleLinks.linkText.locked","Section is Locked");
    else if (isComplete())
      return getStringResource("isi.sectionToggleLinks.linkText.markIncomplete","Mark Section Incomplete");
    else
      return getStringResource("isi.sectionToggleLinks.linkText.markComplete","Mark Section Complete");
  }

}
TOP

Related Classes of org.cast.isi.panel.StudentSectionCompleteToggleTextLink

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.