blob: 8520b2ae506e019f5320ee16e27a9d2273c6f35b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.examples.extensionpoints.expression.editors;
/**
* Simple text editor used as an expression editor.
*
* This example shows the use of the eclipse default text editor as an expression
* editor for the expression language set in the extension point.
*
* @author Michal Chmielewski (michal.chmielewski@oracle.com)
* @date Jul 17, 2007
*/
public class JavaExpressionEditor extends SimpleTextExpressionEditor {
@Override
protected String getTextEditorId () {
return JavaTextEditor.TEXT_EDITOR_ID;
}
}