Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package samkough.main;
- public class playVideo
- {
- public static void main(String args[])
- {
- playVideoTest pvt = new playVideoTest();
- pvt.playVideo();
- System.out.println(" ");
- pvt.pauseVideo();
- System.out.println(" ");
- pvt.higherVolume();
- System.out.println(" ");
- pvt.lowerVolume();
- System.out.println(" ");
- pvt.changeQuality();
- System.out.println(" ");
- pvt.changeScreenSize();
- System.out.println(" ");
- }
- }
- ------------------------------------------------------------------------------------------------------------------
- package samkough.main;
- public class playVideoTest
- {
- void playVideo()
- {
- System.out.println("Started up the video.");
- }
- void pauseVideo()
- {
- System.out.println("Paused the video.");
- }
- void higherVolume()
- {
- System.out.println("The volume has been highered.");
- }
- void lowerVolume()
- {
- System.out.println("The volume has been lowered.");
- }
- void changeQuality()
- {
- System.out.println("The quality has been changed.");
- }
- void changeScreenSize()
- {
- System.out.println("The screen size has been changed.");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment