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

testdata.Properties1 Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2010 itemis AG (http://www.itemis.eu) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package testdata;

/**
 * @author Sven Efftinge - Initial contribution and API
 */
public class Properties1 {
	public String prop1;
	private String prop2;
	
	public String getProp1() {
		return prop1;
	}
	
	public String getProp2() {
		return prop2;
	}
	
	public void setProp1(String prop1) {
		this.prop1 = prop1;
	}
	
	public void setProp2(String prop2) {
		this.prop2 = prop2;
	}
	
	public void setProp2(int i) {
		setProp2("Integer: " + Integer.toString(i));
	}
	
	public String getProp3() {
		return prop2;
	}
	
	public String setProp3(int i) {
		setProp2("Integer: " + Integer.toString(i));
		return prop2;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy