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

testdata.LinkingTypeEquallyNamed Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2011 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;

@SuppressWarnings("unused")
public class LinkingTypeEquallyNamed {

	protected String protectedField;
	
	public String publicField;
	
	public String fieldOverloadsMethod;
	
	public void withArgument(Object o) {}
	
	public void withArgument(Object o, int i, int j) {}
	public void fieldOverloadsMethod(int i, int j) {}
	
	protected String getProtectedField() {
		return protectedField;
	}
	public String getPublicField() {
		return publicField;
	}
	public String getFieldOverloadsMethod() {
		return fieldOverloadsMethod;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy