model.MARK_II.sensory.VisionCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WalnutiQ Show documentation
Show all versions of WalnutiQ Show documentation
A Java based Neuron Modeling framework
The newest version!
package model.MARK_II.sensory;
/**
* A data structure that represents a single VisionCell within the OldRetina.
*
* @author Quinn Liu ([email protected])
* @version April 4, 2013
*/
public class VisionCell extends SensorCell {
public VisionCell() {
super();
}
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("\n===================");
stringBuilder.append("\n--VisionCell Info--");
stringBuilder.append("\n isActive: ");
stringBuilder.append(super.getActiveState());
stringBuilder.append("\nwasActive: ");
stringBuilder.append(super.getPreviousActiveState());
stringBuilder.append("\n===================");
String visionCellInformation = stringBuilder.toString();
return visionCellInformation;
}
}