fork download
  1. public class SelectTitleListResult {
  2. private String title_name;
  3. private int title_number;
  4. private int movie_number;
  5. private String years_publication;
  6. private double performance_income;
  7. private double Production_cost;
  8. private double Public_evaluation;
  9. private double Screening_time;
  10. private String Genre_name;
  11. private int Genre_number;
  12. private String directed_name;
  13. private int directed_number;
  14. private String cast_name;
  15. private int cast_number;
  16. private String production_country;
  17. private String original_number;
  18.  
  19. public void Set_Title_number(int title_number){
  20. this.title_number = title_number;
  21. }
  22.  
  23. public int Get_Title_number(){
  24. return this.title_number;
  25. }
  26.  
  27. public void Set_Title_name(String title_name){
  28. this.title_name = title_name;
  29. }
  30.  
  31. public String Get_Title_name(){
  32. return this.title_name;
  33. }
  34.  
  35. public void Set_movie_number(int movie_number){
  36. this.movie_number = movie_number;
  37. }
  38.  
  39. public int Get_movie_number(){
  40. return this.movie_number;
  41. }
  42.  
  43. public void Set_years_publication(String years_publication){
  44. this.years_publication = years_publication;
  45. }
  46.  
  47. public String Get_years_publication(){
  48. return this.years_publication;
  49. }
  50.  
  51. public void Set_performance_income(double performance_income){
  52. this.performance_income = performance_income;
  53. }
  54.  
  55. public double Get_performance_income(){
  56. return this.performance_income;
  57. }
  58.  
  59. public void Set_Production_cost(double Production_cost){
  60. this.Production_cost = Production_cost;
  61. }
  62.  
  63. public double Get_Production_cost(){
  64. return this.Production_cost;
  65. }
  66.  
  67. public void Set_Public_evaluation(double Public_evaluation){
  68. this.Public_evaluation = Public_evaluation;
  69. }
  70.  
  71. public double Get_Public_evaluation(){
  72. return this.Public_evaluation;
  73. }
  74.  
  75. public void Set_Screening_time(double Screening_time){
  76. this.Screening_time = Screening_time;
  77. }
  78.  
  79. public double Get_Screening_time(){
  80. return this.Screening_time;
  81. }
  82.  
  83. public void Set_Genre_number(int Genre_number){
  84. this.Genre_number = Genre_number;
  85. }
  86.  
  87. public int Get_Genre_number(){
  88. return this.Genre_number;
  89. }
  90.  
  91. public void Set_Genre_name(String Genre_name){
  92. this.Genre_name = Genre_name;
  93. }
  94.  
  95. public String Get_Genre_name(){
  96. return this.Genre_name;
  97. }
  98.  
  99. public void Set_directed_name(String directed_name){
  100. this.directed_name = directed_name;
  101. }
  102.  
  103. public String Get_directed_name(){
  104. return this.directed_name;
  105. }
  106.  
  107. public void Set_directed_number(int directed_number){
  108. this.directed_number = directed_number;
  109. }
  110.  
  111. public int Get_directed_number(){
  112. return this.directed_number;
  113. }
  114.  
  115. public void Set_cast_name(String cast_name){
  116. this.cast_name = cast_name;
  117. }
  118.  
  119. public String Get_cast_name(){
  120. return this.cast_name;
  121. }
  122.  
  123. public void Set_cast_number(int cast_number){
  124. this.cast_number = cast_number;
  125. }
  126.  
  127. public int Get_cast_number(){
  128. return this.cast_number;
  129. }
  130.  
  131. public void Set_production_country(String production_country){
  132. this.production_country = production_country;
  133. }
  134.  
  135. public String production_country(){
  136. return this.production_country;
  137. }
  138.  
  139. public void Set_original_number(String original_number){
  140. this.original_number = original_number;
  141. }
  142.  
  143. public String original_number(){
  144. return this.original_number;
  145. }
  146.  
  147. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class SelectTitleListResult is public, should be declared in a file named SelectTitleListResult.java
public class SelectTitleListResult {
       ^
1 error
stdout
Standard output is empty