blob: dd30f46d0ee1b01a7cc237c8eb1d30930fc5f16f [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 m;
/**
*
*/
public class MethodUsageImpl implements MethodUsageInterface {
/**
* @see x.y.z.MethodUsageInterface#m1()
*/
public void m1() {
}
/**
* @see x.y.z.MethodUsageInterface#m2()
*/
public void m2() {
}
/**
* @see x.y.z.MethodUsageInterface#m3()
*/
public void m3() {
}
}