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

📄 cdkbugtaglet.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $Revision: 7973 $ $Author: egonw $ $Date: 2007-02-19 13:16:03 +0100 (Mon, 19 Feb 2007) $ *  * Copyright (C) 2004-2007  Egon Willighagen <egonw@users.sf.net> * * This program 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 program 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 program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */package net.sf.cdk.tools.doclets;import com.sun.tools.doclets.Taglet;import com.sun.javadoc.*;import java.util.Map;/** * Taglet that expands @cdk.bug tag into a weblink to CDK's * SourceForge bug track system. It's typically used as: * <pre> *   @cdk.bug 1095690 * </pre> */public class CDKBugTaglet implements Taglet {        private static final String NAME = "cdk.bug";        public String getName() {        return NAME;    }        public boolean inField() {        return false;    }    public boolean inConstructor() {        return false;    }        public boolean inMethod() {        return false;    }        public boolean inOverview() {        return false;    }    public boolean inPackage() {        return false;    }    public boolean inType() {        return true;    }        public boolean isInlineTag() {        return false;    }        public static void register(Map tagletMap) {       CDKBugTaglet tag = new CDKBugTaglet();       Taglet t = (Taglet) tagletMap.get(tag.getName());       if (t != null) {           tagletMap.remove(tag.getName());       }       tagletMap.put(tag.getName(), tag);    }    public String toString(Tag tag) {        return "<DT><B>This class is affected by these bug(s): </B><DD>"               + expand(tag) + "</DD>\n";    }        public String toString(Tag[] tags) {        if (tags.length == 0) {            return null;        } else {        	StringBuffer list = new StringBuffer();        	list.append("<DT><B>This class is affected by these bug(s): </B><DD>");        	for (int i=0; i<tags.length; i++) {        		list.append(expand(tags[i])).append(" ");        	}        	list.append("</DD>\n");            return list.toString();        }    }    private String expand(Tag tag) {        return "<a href=\"http://sourceforge.net/tracker/index.php?func=detail&group_id=20024&atid=120024&aid="               + tag.text() + "\">" + tag.text() + "</a>";    }}

⌨️ 快捷键说明

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