blob: 55298aa702cf7b5a8fb0a8312c9b009006e6212a [file] [log] [blame]
#*******************************************************************************
# Copyright (c) 2008, 2018 Borland Software Corporation 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:
# Borland Software Corporation - initial API and implementation
#*******************************************************************************
#perl -w
use strict;
while(<>) {
if(m{transformation\s+([^;]+);}) {
print "transformation models.$1.$1;\n"
}
else {
print;
}
}