Advertisement
Zeroblade

ginginchwan no nantoka

Feb 6th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Movie {
  2.   String title_;
  3.   String[] artists_;
  4.   String synopsis_;
  5.  
  6.   public Movie(String title, String[] artists, String synopsis) {
  7.     title_ = title;
  8.     arists_ = artists;
  9.     synopsis_ = synopsis;
  10.   }
  11.  
  12.   //other functions
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement