001 /*
002 * Sonar, open source software quality management tool.
003 * Copyright (C) 2009 SonarSource SA
004 * mailto:contact AT sonarsource DOT com
005 *
006 * Sonar is free software; you can redistribute it and/or
007 * modify it under the terms of the GNU Lesser General Public
008 * License as published by the Free Software Foundation; either
009 * version 3 of the License, or (at your option) any later version.
010 *
011 * Sonar is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014 * Lesser General Public License for more details.
015 *
016 * You should have received a copy of the GNU Lesser General Public
017 * License along with Sonar; if not, write to the Free Software
018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
019 */
020 package org.sonar.api.rules.xml;
021
022 import com.thoughtworks.xstream.annotations.XStreamAlias;
023 import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
024 import com.thoughtworks.xstream.annotations.XStreamImplicit;
025
026 import java.util.ArrayList;
027 import java.util.List;
028
029 @XStreamAlias("rule")
030 public class Rule implements Comparable<String> {
031
032 @XStreamAsAttribute
033 private String key;
034
035 @XStreamAsAttribute
036 private String priority;
037
038 @XStreamImplicit
039 private List<Property> properties;
040
041 public Rule(String ref) {
042 this(ref, null);
043 }
044
045 public Rule(String ref, String priority) {
046 this.key = ref;
047 this.priority = priority;
048 }
049
050 public String getKey() {
051 return key;
052 }
053
054 public void setProperties(List<Property> properties) {
055 this.properties = properties;
056 }
057
058 public List<Property> getProperties() {
059 return properties;
060 }
061
062 public int compareTo(String o) {
063 return o.compareTo(key);
064 }
065
066 public String getPriority() {
067 return priority;
068 }
069
070 public void setPriority(String priority) {
071 this.priority = priority;
072 }
073
074 public void addProperty(Property property) {
075 if (properties == null) {
076 properties = new ArrayList<Property>();
077 }
078 properties.add(property);
079 }
080
081 }