📄 version.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.hadeslee.yoyoplayer.util;import java.util.logging.Logger;/** * 一个抽象版本的对象 * @author hadeslee */public class Version { private static Logger log = Logger.getLogger(Version.class.getName()); private String version; private String url; private String description; public Version(String version, String url,String description) { this.version = version; this.url = url; this.description=description; } public String getDescription() { return description; } public String getUrl() { return url; } public String getVersion() { return version; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -