📄 parameter.java
字号:
package com.wootion.control;
public class Parameter {
public static String songName = "欢迎使用华通音乐播放器";
public static int playControl = 0; //0单曲播放 1单曲循环 2循环播放 3随机播放
public static String option[] = { "单曲播放", "单曲循环", "循环播放", "随机播放" };
public static String strSkin[] = {"魅力黑","苹果绿","玛雅蓝","霜叶红","腾龙黄"};
public static int skin = 0;
public static String pRms = "parameter";
//"parameter"RMS中的内容 id=1时为播放控制 id=2时为皮肤选择
public static int pcid = 1;
public static int skid = 2;
public Parameter() {
// TODO Auto-generated constructor stub
}
public static String showPC(int pc){
if(pc > -1 && pc < option.length){
return option[pc];
}else{
return "选择模式";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -