blob: 3ba2b6fc90c2f4be7c844fbc292d66ad2aa1ddc0 [file] [log] [blame]
/*
* Copyright (c) 2009 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:
* Alexander Shatalin (Borland) - initial API and implementation
*/
library CodeGenerationUtils;
/*
* This file contains a set of qvto queries duplicating corresponding queries
* from same native library and can be important to compile corresponding
* templates in a workspace.
*
* This file should NOT be deployed to final .jar - original native library
* implementation (registered via plugin.xml) should be used on execution time.
*/
helper toStringLiteral(stringValue : String) : String {
return null;
}
helper escapeXML(stringValue : String) : String {
return null;
}
helper safeName(stringValue : String) : String {
return null;
}
helper validJavaIdentifier(stringValue : String) : String {
return null;
}