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

📄 cdkmoduletaglet.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $Revision: 7973 $ $Author: egonw $ $Date: 2007-02-19 13:16:03 +0100 (Mon, 19 Feb 2007) $ * * Copyright (C) 2004  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.module tag into a weblink to the CDK * webpage. */public class CDKModuleTaglet implements Taglet {        private static final String NAME = "cdk.module";        public String getName() {        return NAME;    }        public boolean inField() {        return true;    }    public boolean inConstructor() {        return true;    }        public boolean inMethod() {        return true;    }        public boolean inOverview() {        return true;    }    public boolean inPackage() {        return true;    }    public boolean inType() {        return true;    }        public boolean isInlineTag() {        return false;    }        public static void register(Map tagletMap) {       CDKModuleTaglet tag = new CDKModuleTaglet();       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>Belongs to CDK module: </B><DD>"               + "<a href=\"http://almost.cubic.uni-koeln.de/cdk/cdk_top/devel/modules/module-"               + tag.text() + "/\">" + tag.text() + "</a></DD>\n";    }        public String toString(Tag[] tags) {        if (tags.length == 0) {            return null;        } else {            return toString(tags[0]);        }    }}

⌨️ 快捷键说明

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