?? audioplayer.java
字號:
package com.javapatterns.state.audioplayer;
public class AudioPlayer
{
public void stopButton()
{
}
public void startButton()
{
}
public void setState(AudioPlayerState state)
{
}
public void startPlay()
{
System.out.println("Start playing");
}
public void stopPlay()
{
System.out.println("Stop playing");
}
/**
* @directed
* @link aggregation
*/
private AudioPlayerState audioPlayerState;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -