1 package org.andromda.core.metafacade;
2
3
4 /***
5 * Fake metafacade number 2 (just used for testing the MetafacadeMappings).
6 *
7 * @author Chad Brandon
8 */
9 public class Metafacade1Impl
10 extends MetafacadeBase
11 {
12 /***
13 * @param metaObject
14 * @param context
15 */
16 public Metafacade1Impl(
17 Object metaObject,
18 String context)
19 {
20 super(metaObject, context);
21 }
22 }