blob: 0b8662e71cd74824170b4777248af6e1014eca03 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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
*******************************************************************************/
package a.b.c;
/**
*
* @since
*/
public class TestMethod4 {
static class Inner1 {
/**
* @noreference
*/
public void one() {}
/**
* @noextend
*/
protected void two() {}
/**
* @noreference
*/
public static void three() {}
static class Inner3 {
/**
* @noreference
*/
public void one() {}
/**
* @noextend
*/
protected void two() {}
/**
* @noreference
*/
public static void three() {}
}
}
class Inner2 {
/**
* @noreference
*/
public void one() {}
/**
* @noextend
*/
protected void two() {}
class Inner4 {
/**
* @noreference
*/
public void one() {}
/**
* @noextend
*/
protected void two() {}
}
}
}