use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.
the class DirectoryRecordWriter method setDirectory.
public void setDirectory(final File baseDirectory) {
this.directory = baseDirectory;
baseDirectory.mkdirs();
this.labelCountMap = new LabelCountMap("Write " + baseDirectory.getAbsolutePath());
this.labelCountMap.connect();
}
use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.
the class EqualTypeAndLineEdgeCleanupVisitor method init.
@PostConstruct
public void init() {
this.duplicateStatistics = new LabelCountMap("Duplicate equal lines");
this.duplicateStatistics.connect();
}
use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.
the class ItersectsNodeEdgeCleanupVisitor method init.
@PostConstruct
public void init() {
this.splitStatistics = new LabelCountMap("Split edges");
this.splitStatistics.connect();
}
use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.
the class LinearIntersectionNotEqualLineEdgeCleanupVisitor method init.
@PostConstruct
public void init() {
this.duplicateStatistics = new LabelCountMap("Duplicate intersecting lines");
this.duplicateStatistics.connect();
}
use of com.revolsys.util.count.LabelCountMap in project com.revolsys.open by revolsys.
the class RecordPseudoNodeRemovalVisitor method init.
@PostConstruct
public void init() {
this.mergedStatistics = new LabelCountMap("Merged at psuedo node");
this.mergedStatistics.connect();
}
Aggregations