blob: 0b66ba370f3c3ee3b0c45808a25d9d6792119742 [file] [log] [blame]
/*
* Copyright (c) 2007, 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
*/
«IMPORT 'http://www.eclipse.org/gmf/2009/GenModel'»
«DEFINE UriEditorInputTester FOR gmfgen::GenNavigator
«EXPAND xpt::Common::copyright FOR editorGen
package «editorGen.editor.packageName»;
«EXPAND xpt::Common::generatedClassComment»
public class «uriInputTesterClassName» extends org.eclipse.core.expressions.PropertyTester {
«EXPAND test FOR editorGen
«EXPAND additions
}
«ENDDEFINE»
«DEFINE test FOR gmfgen::GenEditorGenerator
«EXPAND xpt::Common::generatedMemberComment»
public boolean test(Object receiver, String method, Object[] args, Object expectedValue) {
if (false == receiver instanceof org.eclipse.emf.common.ui.URIEditorInput) {
return false;
}
org.eclipse.emf.common.ui.URIEditorInput editorInput = (org.eclipse.emf.common.ui.URIEditorInput) receiver;
return "«diagramFileExtension»".equals(editorInput.getURI().fileExtension()); «EXPAND xpt::Common::nonNLS»
}
«ENDDEFINE»
«DEFINE additions FOR gmfgen::GenNavigator
«ENDDEFINE»