annotate bindings/java/src/org/omras2/Status.java @ 765:337e72088f76

Fix for some sample bugs a + b ? c : d does not do what I think it does. That bug mostly masked a thorough logic error in building the table of counts of possible sequences; there was too much cumulativeness. There apparently remain problems
author mas01cr
date Thu, 02 Jun 2011 16:31:35 +0000
parents 7e1fa27b67ee
children
rev   line source
mas01mj@724 1 package org.omras2;
mas01mj@724 2 import lombok.Getter;
mas01mj@724 3 import lombok.Setter;
mas01mj@724 4
mas01mj@724 5 public class Status
mas01mj@724 6 {
mas01mj@725 7 @Getter private int numFiles;
mas01mj@725 8 @Getter private int dim;
mas01mj@725 9 @Getter private int dudCount;
mas01mj@725 10 @Getter private int nullCount;
mas01mj@725 11 @Getter private int length;
mas01mj@725 12 @Getter private int dataRegionSize;
mas01mj@725 13 @Getter private boolean isL2Normed;
mas01mj@725 14 @Getter private boolean hasPower;
mas01mj@725 15 @Getter private boolean hasTimes;
mas01mj@725 16 @Getter private boolean hasReferences;
mas01mj@724 17 }