• DemoApp.java

  • §
    package MusicLandscape;
    
    import MusicLandscape.entities.*;
  • §

    This demo application is again very slim, I had no inspiration past implementing the code to pass the tests.

    /**
     * Test program to check MusicLandscape entity classes.
     *
     * Does not do anything interesting.
     *
     * @author Jonas Altrock (ew20b126@technikum-wien.at)
     * @version 1
     * @since ExerciseSheet03
     */
    public class DemoApp {
        public static void main(String[] args) {
            Track t = new Track();
    
            if (t.scan()) {
                System.out.println("You successfully changed the track.");
            } else {
                System.out.println("You did not change the track.");
            }
    
            System.out.print(t);
        }
    }