
/**
 * Title:        Cudos<p>
 * Description:  Cambridge University Distributed Opportunity Systems
 * Roger Carpenter<p>
 * Copyright:    Copyright (c) Sanjay Manohar<p>
 * Company:      Cambridge University<p>
 * @author Sanjay Manohar
 * @version 1.0
 */
package com.cudos;

import com.cudos.common.*;


public class HumanCell extends HumanCell {
  public HumanCell() {
	imagecontrol.setStretched(false);
	doHighlight=true;
  }
  public String getExhibitName(){return "Picture indexing";}
  public String[] getItemNames() {
    //TODO: implement this com.cudos.common.IndexedPictureAndText abstract method
	return new String[]{"Plasma membrane", "Heterochromatin", "Nucleoplasm", "Nucleolus", "Nuclear pore", "Nuclear membrane", "Smooth endoplasmic reticulum", "Rough endoplasmic reticulum", "Ribosomes", "Centriole", "Cytoskeletal elements", "Golgi apparatus", "Lysosomes", "Mitochondria", "Cytoplasm"};
  }

  public String getImageName() {
    //TODO: implement this com.cudos.common.IndexedPictureAndText abstract method
	return "resources/images/CELLFIG.gif";
  }

  public String getIndexName() {
    //TODO: implement this com.cudos.common.IndexedPictureAndText abstract method
	return "resources/images/CELLFIGix.gif";
  }

  public String[] getTexts() {
    //TODO: implement this com.cudos.common.IndexedPictureAndText abstract method
	return new String[]{"text 1","text2","text 3","text 4"};
  }
}