📄 library.java
字号:
package org.jfree.ui.about;/** * Library specification moved to base package to allow more control * over the boot process. * * @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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -