001 /* 002 * Sonar, open source software quality management tool. 003 * Copyright (C) 2008-2012 SonarSource 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 /** 030 * @deprecated since 2.3 031 */ 032 @Deprecated 033 @XStreamAlias("rule") 034 public class Rule implements Comparable<String> { 035 036 @XStreamAsAttribute 037 private String key; 038 039 @XStreamAsAttribute 040 private String priority; 041 042 @XStreamImplicit 043 private List<Property> properties; 044 045 public Rule(String ref) { 046 this(ref, null); 047 } 048 049 public Rule(String ref, String priority) { 050 this.key = ref; 051 this.priority = priority; 052 } 053 054 public String getKey() { 055 return key; 056 } 057 058 public void setProperties(List<Property> properties) { 059 this.properties = properties; 060 } 061 062 public List<Property> getProperties() { 063 return properties; 064 } 065 066 public int compareTo(String o) { 067 return o.compareTo(key); 068 } 069 070 public String getPriority() { 071 return priority; 072 } 073 074 public void setPriority(String priority) { 075 this.priority = priority; 076 } 077 078 public void addProperty(Property property) { 079 if (properties == null) { 080 properties = new ArrayList<Property>(); 081 } 082 properties.add(property); 083 } 084 085 }