blob: 29dad6a1deb7ed868a0e25283d43e0a1182aef77 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 BEA Systems, Inc.
* 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 targets.model.pb;
import targets.model.pa.AnnoZ;
@AnnoZ(annoZString = "annoZOnD")
public class D extends AB {
public enum DEnum { DEnum1, DEnum2, DEnum3 }
@AnnoZ(annoZString = "annoZOnDMethod", annoZint = 31)
public void methodDvoid(DEnum dEnum1) {}
}
// Should inherit AnnoZ
class DChild extends D {}