/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		CustomClass dieselEngine= new CustomClass("dieselEngine");
		dieselEngine.setProperty1("robust");
		dieselEngine.setProperty2("viable");
		dieselEngine.setProperty3("affordable");
		dieselEngine.showProperties();
	}
}

class CustomClass {
private String property1;
private String property2;
private String property3;
private String instanceName;

public CustomClass(String instance){
    this.instanceName =instance;
}
public String getProperty1() {
	return property1;
}
public void setProperty1(String property1) {
	this.property1 = property1;
}
public String getProperty2() {
	return property2;
}
public void setProperty2(String property2) {
	this.property2 = property2;
}
public String getProperty3() {
	return property3;
}
public void setProperty3(String property3) {
	this.property3 = property3;
}
public void showProperties() {
    java.lang.System.out
            .println("Displaying properties for instance of "+instanceName+" object System:"
                    + "\nProperty#1: " + property1 + "\nProperty#2: "
                    + property2 + "\nProperty#3: " + property3);
}
}