]> source.dussan.org Git - sonarqube.git/blob
7cac0b98aed2d52e0d22c4a57b0d7622d4032146
[sonarqube.git] /
1 package org.sonar.plugins.switchoffviolations.pattern;
2
3 import com.google.common.collect.Sets;
4
5 import java.util.Set;
6
7 /**
8  * 
9  */
10 public class LineRange {
11   int from, to;
12
13   public LineRange(int from, int to) {
14     if (to < from) {
15       throw new IllegalArgumentException("Line range is not valid: " + from + " must be greater than " + to);
16     }
17     this.from = from;
18     this.to = to;
19   }
20
21   // SONAR-ON
22   public boolean in(int lineId) {
23     return from <= lineId && lineId <= to;
24   }
25   // SONAR-OFF
26
27   public Set<Integer> toLines() {
28     Set<Integer> lines = Sets.newLinkedHashSet();
29     for (int index = from; index <= to; index++) {
30       lines.add(index);
31     }
32     return lines;
33   }
34
35 }