blob: 1f6718d33b4cd02952d9a863ef7b58dc48824165 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021, 2022 Christopher Gerking and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Christopher Gerking - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.tests.qvt.oml.bbox;
import org.eclipse.m2m.qvt.oml.blackbox.java.Module;
import simpleuml.Class;
import simpleuml.DataType;
import simpleuml.SimpleumlFactory;
import simpleuml.SimpleumlPackage;
@Module(packageURIs={SimpleumlPackage.eNS_URI})
public class Bug573752_Library {
public Class test(DataType dataType) {
return SimpleumlFactory.eINSTANCE.createClass();
}
}