All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.java.com.cloudant.tests.Movie Maven / Gradle / Ivy

There is a newer version: 2.20.1
Show newest version
package com.cloudant.tests;

public class Movie {

	private String Movie_name;
	private int Movie_year;
	
	/**
	 * @return the movie_name
	 */
	public String getMovie_name() {
		return Movie_name;
	}
	/**
	 * @return the movie_year
	 */
	public int getMovie_year() {
		return Movie_year;
	}
	/* (non-Javadoc)
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() {
		return  Movie_name + ", " + Movie_year;
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy