All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.MARK_II.AudioCell Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.MARK_II;

/**
 * A data structure that represents a single audio cell within the cochlea.
 *
 * @author Quinn Liu ([email protected])
 * @version June 8, 2013
 */
public class AudioCell extends SensorCell {

    public AudioCell() {
        super();
    }

    @Override
    public String toString() {
        StringBuilder stringBuilder = new StringBuilder();
        stringBuilder.append("\n==================");
        stringBuilder.append("\n--AudioCell Info--");
        stringBuilder.append("\nisActive: ");
        stringBuilder.append(getActiveState());
        stringBuilder.append("\n==================");
        String sensorCellInformation = stringBuilder.toString();
        return sensorCellInformation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy