/*
* $Id: CaseCodeEditor.java,v 1.3 2009/06/30 09:35:57 valdas Exp $
* Created on Sep 25, 2005
*
* Copyright (C) 2005 Idega Software hf. All Rights Reserved.
*
* This software is the proprietary information of Idega hf.
* Use is subject to license terms.
*/
package com.idega.block.process.presentation;
import java.util.Map;
import com.idega.presentation.IWContext;
/**
* Last modified: $Date: 2009/06/30 09:35:57 $ by $Author: valdas $
*
* @author <a href="mailto:laddi@idega.com">laddi</a>
* @version $Revision: 1.3 $
*/
public class CaseCodeEditor extends CaseBlock {
/* (non-Javadoc)
* @see com.idega.block.process.presentation.CaseBlock#present(com.idega.presentation.IWContext)
*/
@Override
protected void present(IWContext iwc) throws Exception {
}
@Override
public String getCasesProcessorType() {
return null;
}
@Override
public Map<Object, Object> getUserCasesPageMap() {
return null;
}
@Override
public boolean showCheckBox() {
return false;
}
@Override
public boolean showCheckBoxes() {
return false;
}
}