| Free download Accumulate 1.3  
 
 
 Accumulate 1.3 development, other software developed by Canadian Mind Products. The license of this  development, other software is freeware, the price is 0.00, you can free download and get a free trial before you buy a license or registration. All Accumulate 1.3 download links are direct Accumulate full download from Canadian Mind Products site or their selected mirrors. Used to accumulate values by category. It might be useful for example in a billing program to accumulate hours by
 various categories.
 
 It could be used to count how many times various words
 occurred in a document.
 
 All you need is:
 
 buckets.accumulate( "somecategory", someamount );
 
 And Accumulate looks after creating the buckets to
 accumulate new categories for you.
 
 e.g.
 
 Accumulate buckets = new Accumulate( 20 );
 buckets.accumulate( "ugli fruit", 3 );
 buckets.accumulate( "peaches", 10 );
 buckets.accumulate( "strawberries", 15 );
 buckets.accumulate( "peaches", 14 );
 String[] categories = buckets.categories();
 
 // prints:
 // peaches:24
 // strawberries:15
 // ugli fruit:3
 for (String category: categories )
 {
 System.out.println( category:
 + ":"
 + buckets.total( category ));
 }
 
 You can test the app with:
 
 java.exe com.mindprod.accumulate.Accumulate
 
 Keywords: accumulate, buckets, histogram, count, categories, Freeware, Development, Other, Canadian Mind Products, Accumulate Recent Changes: add ANT build file Install Support: No Install Support Supported Languages: English Additional Requirements: Java 1.2+ 
 |