fork(1) download
  1. public class SelectTitleListResult
  2. {
  3.  
  4.  
  5. private String title_name;
  6. private int title_number;
  7. private int movie_number;
  8. private String years_publication;
  9. private double performance_income;
  10. private double Production_cost;
  11. private double Public_evaluation;
  12. private double Screening_time;
  13. private String Genre_name;
  14. private int Genre_number;
  15. private String Genre_name;
  16. private String directed_name;
  17. private int directed_number;
  18. private String cast_name;
  19. private int cast_number;
  20. private String production_country;
  21. private String original_number;
  22.  
  23.  
  24.  
  25. public void Set_Title_number(int title_number)
  26. {
  27. this.title_number = title_number;
  28. }
  29.  
  30. public int Get_Title_number();
  31. {
  32. return this.title_number;
  33. }
  34.  
  35. public void Set_Title_name(String title_name)
  36. {
  37. this.title_name = title_name;
  38. }
  39.  
  40. public String Get_Title_name();
  41. {
  42. return this.title_name;
  43. }
  44.  
  45.  
  46.  
  47.  
  48. public void Set_movie_number(int movie_number)
  49. {
  50. this.movie_number = movie_number;
  51. }
  52.  
  53. public int Get_movie_number();
  54. {
  55. return this.movie_number;
  56. }
  57.  
  58.  
  59.  
  60.  
  61. public void Set_years_publication(String years_publication)
  62. {
  63. this.years_publication = years_publication;
  64. }
  65.  
  66. public String Get_years_publication();
  67. {
  68. return this.years_publication;
  69. }
  70.  
  71.  
  72.  
  73.  
  74.  
  75. public void Set_performance_income(double performance_income)
  76. {
  77. this.performance_income = performance_income;
  78. }
  79.  
  80. public double Get_performance_income();
  81. {
  82. return this.performance_income;
  83. }
  84.  
  85.  
  86.  
  87.  
  88. public void Set_Production_cost(double Production_cost)
  89. {
  90. this.Production_cost = Production_cost;
  91. }
  92.  
  93. public double Get_Production_cost();
  94. {
  95. return this.Production_cost;
  96. }
  97.  
  98.  
  99.  
  100. public void Set_Public_evaluation(double Public_evaluation)
  101. {
  102. this.Public_evaluation = Public_evaluation;
  103. }
  104.  
  105. public double Get_Public_evaluation();
  106. {
  107. return this.Public_evaluation;
  108. }
  109.  
  110.  
  111.  
  112.  
  113. public void Set_Screening_time(double Screening_time)
  114. {
  115. this.Screening_time = Screening_time;
  116. }
  117.  
  118. public double Get_Screening_time();
  119. {
  120. return this.Screening_time;
  121. }
  122.  
  123.  
  124.  
  125.  
  126. public void Set_Genre_number(int Genre_number)
  127. {
  128. this.Genre_number = Genre_number;
  129. }
  130.  
  131. public int Get_Genre_number();
  132. {
  133. return this.Genre_number;
  134. }
  135.  
  136.  
  137.  
  138.  
  139.  
  140. public void Set_Genre_name(varchar(400) Genre_name)
  141. {
  142. this.Genre_name = Genre_name;
  143. }
  144.  
  145. public varchar(400) Get_Genre_name();
  146. {
  147. return this.Genre_name;
  148. }
  149.  
  150.  
  151.  
  152.  
  153.  
  154. public void Set_directed_name(varchar(400) directed_name)
  155. {
  156. this.directed_name = directed_name;
  157. }
  158.  
  159. public varchar(400) Get_directed_name();
  160. {
  161. return this.directed_name;
  162. }
  163.  
  164.  
  165.  
  166.  
  167. public void Set_Genre_number(int directed_number)
  168. {
  169. this.directed_number = directed_number;
  170. }
  171.  
  172. public int Get_directed_number();
  173. {
  174. return this.directed_number;
  175. }
  176.  
  177.  
  178.  
  179.  
  180.  
  181. public void Set_directed_name(varchar(400) cast_name)
  182. {
  183. this.cast_name = cast_name;
  184. }
  185.  
  186. public varchar(400) Get_cast_name();
  187. {
  188. return this.cast_name;
  189. }
  190.  
  191.  
  192.  
  193. public void Set_cast_number(int cast_number)
  194. {
  195. this.cast_number = cast_number;
  196. }
  197.  
  198. public int Get_cast_number();
  199. {
  200. return this.cast_number;
  201. }
  202.  
  203.  
  204.  
  205.  
  206. public void Set_production_country(varchar(400) production_country)
  207. {
  208. this.production_country = production_country;
  209. }
  210.  
  211. public varchar(400) production_country();
  212. {
  213. return this.production_country;
  214. }
  215.  
  216.  
  217. public void Set_original_number(varchar(400) original_number)
  218. {
  219. this.original_number = original_number;
  220. }
  221.  
  222. public varchar(400) original_number();
  223. {
  224. return this.original_number;
  225. }
  226.  
  227. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:140: error: <identifier> expected
public void Set_Genre_name(varchar(400) Genre_name)
                                  ^
Main.java:145: error: invalid method declaration; return type required
  public varchar(400) Get_Genre_name();
         ^
Main.java:145: error: illegal start of type
  public varchar(400) Get_Genre_name();
                 ^
Main.java:154: error: <identifier> expected
public void Set_directed_name(varchar(400) directed_name)
                                     ^
Main.java:159: error: invalid method declaration; return type required
  public varchar(400) Get_directed_name();
         ^
Main.java:159: error: illegal start of type
  public varchar(400) Get_directed_name();
                 ^
Main.java:181: error: <identifier> expected
public void Set_directed_name(varchar(400) cast_name)
                                     ^
Main.java:186: error: invalid method declaration; return type required
  public varchar(400) Get_cast_name();
         ^
Main.java:186: error: illegal start of type
  public varchar(400) Get_cast_name();
                 ^
Main.java:206: error: <identifier> expected
public void Set_production_country(varchar(400) production_country)
                                          ^
Main.java:211: error: invalid method declaration; return type required
  public varchar(400) production_country();
         ^
Main.java:211: error: illegal start of type
  public varchar(400) production_country();
                 ^
Main.java:217: error: <identifier> expected
public void Set_original_number(varchar(400) original_number)
                                       ^
Main.java:222: error: invalid method declaration; return type required
  public varchar(400) original_number();
         ^
Main.java:222: error: illegal start of type
  public varchar(400) original_number();
                 ^
15 errors
stdout
Standard output is empty