blob: 65ef19431d4e9c508531fd6020884d986bd70db3 [file] [log] [blame]
/*
* Copyright (c) 2006 Borland Software Corporation
*
* 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:
* Anna Karjakina (Borland) - initial API and implementation
*/
import "http://www.eclipse.org/gmf/2008/GenModel";
import "http://www.eclipse.org/emf/2002/Ecore";
String getExternalizerPackageName(gmfgen::GenEditorGenerator generator) :
generator.editor.packageName
;
String getExternalizerClassName() : "Messages" ;
String escapeIllegalKeySymbols(String key) :
key.replaceAll("[=&\"]", "").replaceAll("[ .]", "_")
;
String escapeIllegalMessageSymbols(String message) :
message.replaceAll("!", "\\\\!")
;