blob: ffa8b17524d98d46b45526819a0518b43033e022 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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 x.y.z;
import i.IExtInterface1;
import i.IExtInterface2;
import i.IExtInterface3;
import i.IExtInterface4;
import c.BaseImpl1_2_3_4;
/**
* Multi-indirect implementations with an
* implementing parent class that implements all @noimplement
* interfaces
*/
public class testC6 extends BaseImpl1_2_3_4 implements IExtInterface1,
IExtInterface2, IExtInterface3, IExtInterface4 {
}