library.java
来自「JfreeChart 常用图表例子」· Java 代码 · 共 35 行
JAVA
35 行
package org.jfree.ui.about;/** * Library specification moved to base package to allow more control * over the boot process. * * @author David Gilbert * @deprecated shadow class for deprecation */public class Library extends org.jfree.base.Library { /** * Creates a new library reference. * * @param name the name. * @param version the version. * @param licence the licence. * @param info the web address or other info. */ public Library(final String name, final String version, final String licence, final String info) { super(name, version, licence, info); } /** * Constructs a library reference from a ProjectInfo object. * * @param project information about a project. */ public Library(final ProjectInfo project) { this(project.getName(), project.getVersion(), project.getLicenceName(), project.getInfo()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?