r3593 - in trunk: pollen-votecounting-api pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/model pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/strategy pollen-votecounting-strategy-condorcet pollen-votecounting-strategy-condorcet/src/main/java/org/chorem/pollen/votecounting/strategy pollen-votecoun
Author: tchemit Date: 2012-08-12 13:01:15 +0200 (Sun, 12 Aug 2012) New Revision: 3593 Url: http://chorem.org/repositories/revision/pollen/3593 Log: refs #590: Refactor votecounting module change since Modified: trunk/pollen-votecounting-api/pom.xml trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceIdAble.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceScore.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceToVoteRenderType.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupOfVoter.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupVoteCountingResult.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/SimpleVoter.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingResult.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteForChoice.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/Voter.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoterBuilder.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/AbstractVoteCountingStrategy.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountigStrategyNotFound.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategy.java trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProvider.java trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/model/ChoiceScoreTest.java trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java trunk/pollen-votecounting-strategy-condorcet/pom.xml trunk/pollen-votecounting-strategy-condorcet/src/main/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategy.java trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategyTest.java trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java trunk/pollen-votecounting-strategy-normal/pom.xml trunk/pollen-votecounting-strategy-normal/src/main/java/org/chorem/pollen/votecounting/strategy/NormalStrategy.java trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/NormalStrategyTest.java trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java trunk/pollen-votecounting-strategy-number/pom.xml trunk/pollen-votecounting-strategy-number/src/main/java/org/chorem/pollen/votecounting/strategy/NumberStrategy.java trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/NumberStrategyTest.java trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java trunk/pollen-votecounting-strategy-percentage/pom.xml trunk/pollen-votecounting-strategy-percentage/src/main/java/org/chorem/pollen/votecounting/strategy/PercentageStrategy.java trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/PercentageStrategyTest.java trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java Modified: trunk/pollen-votecounting-api/pom.xml =================================================================== --- trunk/pollen-votecounting-api/pom.xml 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/pom.xml 2012-08-12 11:01:15 UTC (rev 3593) @@ -8,7 +8,7 @@ <parent> <groupId>org.chorem</groupId> <artifactId>pollen</artifactId> - <version>1.5-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> </parent> <groupId>org.chorem.pollen</groupId> Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceIdAble.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceIdAble.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceIdAble.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -29,7 +29,7 @@ * method. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public interface ChoiceIdAble { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceScore.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceScore.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceScore.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -28,7 +28,7 @@ * ChoiceScore for a given choice. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class ChoiceScore implements ChoiceIdAble, Comparable<ChoiceScore> { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceToVoteRenderType.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceToVoteRenderType.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/ChoiceToVoteRenderType.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -26,7 +26,7 @@ * To define how to render a vote. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public enum ChoiceToVoteRenderType { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupOfVoter.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupOfVoter.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupOfVoter.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Group of voters. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class GroupOfVoter implements Voter { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupVoteCountingResult.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupVoteCountingResult.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/GroupVoteCountingResult.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -28,7 +28,7 @@ * TODO * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class GroupVoteCountingResult { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/SimpleVoter.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/SimpleVoter.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/SimpleVoter.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Physical voter. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class SimpleVoter implements Voter { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingResult.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingResult.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingResult.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -28,7 +28,7 @@ * Contains results for a vote. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingResult { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteForChoice.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteForChoice.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteForChoice.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -26,7 +26,7 @@ * A vote for a choice. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteForChoice implements ChoiceIdAble { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/Voter.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/Voter.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/Voter.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -28,7 +28,7 @@ * A voter (can be a physical voter or a group of voters). * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public interface Voter { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoterBuilder.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoterBuilder.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoterBuilder.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -31,7 +31,7 @@ * To build some {@link Voter}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoterBuilder { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/AbstractVoteCountingStrategy.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/AbstractVoteCountingStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/AbstractVoteCountingStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -49,7 +49,7 @@ * Base abstract implementation of a {@link VoteCountingStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public abstract class AbstractVoteCountingStrategy implements VoteCountingStrategy { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountigStrategyNotFound.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountigStrategyNotFound.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountigStrategyNotFound.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -26,7 +26,7 @@ * Exception when a vote counting could not be found. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountigStrategyNotFound extends RuntimeException { private static final long serialVersionUID = 1L; Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategy.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -33,7 +33,7 @@ * Contract of a vote counting method. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public interface VoteCountingStrategy { Modified: trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProvider.java =================================================================== --- trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProvider.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProvider.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -35,7 +35,7 @@ * Provider of {@link VoteCountingStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProvider { Modified: trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/model/ChoiceScoreTest.java =================================================================== --- trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/model/ChoiceScoreTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/model/ChoiceScoreTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -31,7 +31,7 @@ * Tests the {@link ChoiceScore}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class ChoiceScoreTest { Modified: trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java =================================================================== --- trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-api/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Tests the {@link VoteCountingStrategyProvider}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProviderTest { Modified: trunk/pollen-votecounting-strategy-condorcet/pom.xml =================================================================== --- trunk/pollen-votecounting-strategy-condorcet/pom.xml 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-condorcet/pom.xml 2012-08-12 11:01:15 UTC (rev 3593) @@ -8,7 +8,7 @@ <parent> <groupId>org.chorem</groupId> <artifactId>pollen</artifactId> - <version>1.5-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> </parent> <groupId>org.chorem.pollen</groupId> Modified: trunk/pollen-votecounting-strategy-condorcet/src/main/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategy.java =================================================================== --- trunk/pollen-votecounting-strategy-condorcet/src/main/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-condorcet/src/main/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -48,7 +48,7 @@ * Condorcet. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class CondorcetStrategy extends AbstractVoteCountingStrategy { Modified: trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategyTest.java =================================================================== --- trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategyTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/CondorcetStrategyTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -43,7 +43,7 @@ * Tests the {@link CondorcetStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class CondorcetStrategyTest { Modified: trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java =================================================================== --- trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-condorcet/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Tests the {@link VoteCountingStrategyProvider}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProviderTest { Modified: trunk/pollen-votecounting-strategy-normal/pom.xml =================================================================== --- trunk/pollen-votecounting-strategy-normal/pom.xml 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-normal/pom.xml 2012-08-12 11:01:15 UTC (rev 3593) @@ -8,7 +8,7 @@ <parent> <groupId>org.chorem</groupId> <artifactId>pollen</artifactId> - <version>1.5-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> </parent> <groupId>org.chorem.pollen</groupId> Modified: trunk/pollen-votecounting-strategy-normal/src/main/java/org/chorem/pollen/votecounting/strategy/NormalStrategy.java =================================================================== --- trunk/pollen-votecounting-strategy-normal/src/main/java/org/chorem/pollen/votecounting/strategy/NormalStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-normal/src/main/java/org/chorem/pollen/votecounting/strategy/NormalStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -38,7 +38,7 @@ * Condorcet. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class NormalStrategy extends AbstractVoteCountingStrategy { Modified: trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/NormalStrategyTest.java =================================================================== --- trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/NormalStrategyTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/NormalStrategyTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -43,7 +43,7 @@ * Tests the {@link NormalStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class NormalStrategyTest { Modified: trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java =================================================================== --- trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-normal/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Tests the {@link VoteCountingStrategyProvider}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProviderTest { Modified: trunk/pollen-votecounting-strategy-number/pom.xml =================================================================== --- trunk/pollen-votecounting-strategy-number/pom.xml 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-number/pom.xml 2012-08-12 11:01:15 UTC (rev 3593) @@ -8,7 +8,7 @@ <parent> <groupId>org.chorem</groupId> <artifactId>pollen</artifactId> - <version>1.5-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> </parent> <groupId>org.chorem.pollen</groupId> Modified: trunk/pollen-votecounting-strategy-number/src/main/java/org/chorem/pollen/votecounting/strategy/NumberStrategy.java =================================================================== --- trunk/pollen-votecounting-strategy-number/src/main/java/org/chorem/pollen/votecounting/strategy/NumberStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-number/src/main/java/org/chorem/pollen/votecounting/strategy/NumberStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -38,7 +38,7 @@ * Number strategy. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class NumberStrategy extends AbstractVoteCountingStrategy { Modified: trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/NumberStrategyTest.java =================================================================== --- trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/NumberStrategyTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/NumberStrategyTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -43,7 +43,7 @@ * Tests the {@link NumberStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class NumberStrategyTest { Modified: trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java =================================================================== --- trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-number/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Tests the {@link VoteCountingStrategyProvider}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProviderTest { Modified: trunk/pollen-votecounting-strategy-percentage/pom.xml =================================================================== --- trunk/pollen-votecounting-strategy-percentage/pom.xml 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-percentage/pom.xml 2012-08-12 11:01:15 UTC (rev 3593) @@ -8,7 +8,7 @@ <parent> <groupId>org.chorem</groupId> <artifactId>pollen</artifactId> - <version>1.5-SNAPSHOT</version> + <version>1.4.5-SNAPSHOT</version> </parent> <groupId>org.chorem.pollen</groupId> Modified: trunk/pollen-votecounting-strategy-percentage/src/main/java/org/chorem/pollen/votecounting/strategy/PercentageStrategy.java =================================================================== --- trunk/pollen-votecounting-strategy-percentage/src/main/java/org/chorem/pollen/votecounting/strategy/PercentageStrategy.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-percentage/src/main/java/org/chorem/pollen/votecounting/strategy/PercentageStrategy.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -39,7 +39,7 @@ * Percentage strategy. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class PercentageStrategy extends AbstractVoteCountingStrategy { Modified: trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/PercentageStrategyTest.java =================================================================== --- trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/PercentageStrategyTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/PercentageStrategyTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -43,7 +43,7 @@ * Tests the {@link PercentageStrategy}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class PercentageStrategyTest { Modified: trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java =================================================================== --- trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 10:59:15 UTC (rev 3592) +++ trunk/pollen-votecounting-strategy-percentage/src/test/java/org/chorem/pollen/votecounting/strategy/VoteCountingStrategyProviderTest.java 2012-08-12 11:01:15 UTC (rev 3593) @@ -30,7 +30,7 @@ * Tests the {@link VoteCountingStrategyProvider}. * * @author tchemit <chemit@codelutin.com> - * @since 1.5 + * @since 1.4.5 */ public class VoteCountingStrategyProviderTest {
participants (1)
-
tchemit@users.chorem.org