version.java
来自「YOYOPlayer MP3播放器 java+JMF实现」· Java 代码 · 共 38 行
JAVA
38 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?