⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 typeannotation.java

📁 A static analysis tool to find bugs in Java programs
💻 JAVA
字号:
/* * FindBugs - Find Bugs in Java programs * Copyright (C) 2006, University of Maryland *  * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston MA 02111-1307, USA */package edu.umd.cs.findbugs;import java.io.IOException;import edu.umd.cs.findbugs.ba.SignatureConverter;import edu.umd.cs.findbugs.xml.XMLAttributeList;import edu.umd.cs.findbugs.xml.XMLOutput;/** * Bug annotation class for java types. * This is of lighter weight than ClassAnnotation, * and can be used for things like array types. *  * @see ClassAnnotation */public class TypeAnnotation implements BugAnnotation {	private static final long serialVersionUID = 1L;	public static final String DEFAULT_ROLE = "TYPE_DEFAULT";	public static final String EXPECTED_ROLE = "TYPE_EXPECTED";	public static final String FOUND_ROLE = "TYPE_FOUND";	public static final String CLOSEIT_ROLE = "TYPE_CLOSEIT";	public static final String UNHASHABLE_ROLE = "TYPE_UNHASHABLE";	final private String descriptor; // jvm type descriptor, such as "[I"	private String roleDescription;	/**	 * constructor.	 * 	 * <p>For information on type descriptors,	 * <br>see http://java.sun.com/docs/books/vmspec/2nd-edition/html/ClassFile.doc.html#14152	 * <br>or  http://www.murrayc.com/learning/java/java_classfileformat.shtml#TypeDescriptors	 * 	 * @param typeDescriptor a jvm type descriptor, such as "[I"	 */	public TypeAnnotation(String typeDescriptor) {		this(typeDescriptor, DEFAULT_ROLE);	}	public TypeAnnotation(String typeDescriptor, String roleDescription) {		descriptor = typeDescriptor;		this.roleDescription = roleDescription;	}	@Override	public Object clone() {		try {			return super.clone();		} catch (CloneNotSupportedException e) {			throw new AssertionError(e);		}	}	/**	 * Get the type descriptor.	 * @return the jvm type descriptor, such as "[I"	 */	public String getTypeDescriptor() {		return descriptor;	}	public void accept(BugAnnotationVisitor visitor) {		visitor.visitTypeAnnotation(this);	}	public String format(String key, ClassAnnotation primaryClass) {		return new SignatureConverter(descriptor).parseNext();	}	public void setDescription(String roleDescription) {		this.roleDescription = roleDescription;	}	public String getDescription() {		return roleDescription;	}	@Override	public int hashCode() {		return descriptor.hashCode();	}	@Override	public boolean equals(Object o) {		if (!(o instanceof TypeAnnotation))			return false;		return descriptor.equals(((TypeAnnotation) o).descriptor);	}	public int compareTo(BugAnnotation o) {		if (!(o instanceof TypeAnnotation)) // BugAnnotations must be Comparable with any type of BugAnnotation			return this.getClass().getName().compareTo(o.getClass().getName());		return descriptor.compareTo(((TypeAnnotation) o).descriptor);		// could try to determine equivalence with ClassAnnotation, but don't see how this would be useful	}	@Override	public String toString() {		String pattern = I18N.instance().getAnnotationDescription(roleDescription);		FindBugsMessageFormat format = new FindBugsMessageFormat(pattern);		return format.format(new BugAnnotation[]{this}, null);	}	/* ----------------------------------------------------------------------	 * XML Conversion support	 * ---------------------------------------------------------------------- */	private static final String ELEMENT_NAME = "Type";	public void writeXML(XMLOutput xmlOutput) throws IOException {		writeXML(xmlOutput, false);	}	public void writeXML(XMLOutput xmlOutput, boolean addMessages) throws IOException {		XMLAttributeList attributeList = new XMLAttributeList()			.addAttribute("descriptor", descriptor);		String role = getDescription();		if (!role.equals(DEFAULT_ROLE))			attributeList.addAttribute("role", role);		BugAnnotationUtil.writeXML(xmlOutput, ELEMENT_NAME, this, attributeList, addMessages);	}	public boolean isSignificant() {		return true;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -