Skip to content

Instantly share code, notes, and snippets.

@yassaa
Created November 7, 2014 12:26
Show Gist options
  • Save yassaa/55bbac9219ef9dc598ed to your computer and use it in GitHub Desktop.
Save yassaa/55bbac9219ef9dc598ed to your computer and use it in GitHub Desktop.
Movie
import java.time.*;
import java.util.*;
import java.lang.*;
import java.io.*;
public class Movie {
private String movieName;
private String[] time;
private String Cinema;
public Movie (String movieName, String[] time, String Cinema ){
this.movieName = movieName;
this.time = time;
this.Cinema = Cinema;
}
public String getmovieName(){
return movieName;
}
public String[] gettime(){
return time;
}
public String getCinema(){
return Cinema;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment