001package com.hfg.bio.proteinproperty;
002
003
004import com.hfg.bio.seq.Protein;
005import com.hfg.util.DataType;
006
007public interface SingleValueProteinProperty<S extends SimpleProteinPropertyCalcSettings, T>
008{
009   public T calculate(Protein inProtein, S inSettings);
010
011   public Class getReturnType();
012
013   public DataType getDataType();
014}