blob: e487ceaaf61e310a4f31ad997d8ff4029e9abdf4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: TestAccess.java,v $
* $Revision: 1.2 $ $Date: 2005/02/15 23:00:32 $
*/
package testPackage;
/**
* Used for testing fields.
* @since 1.1.0
*/
public class TestAccess {
public int field1;
protected int field2;
TestAccess(RuntimeException i) {
}
TestAccess(Throwable n) {
}
public TestAccess(Exception o) {
}
public void ddd(Integer o, Number n) {
}
public void ddd(Number o, Integer n) {
}
public void ddd(Number n, Number n1) {
}
public void xyz() {
}
public void xyz(Number n) {
}
public void xyz(Object n) {
}
protected void qxr() {
}
}