blob: 2051056e09e6b5d635fc0db0a63eb606717724fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2012 Oracle 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.examples.extensionpoints.expression.editors;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor;
import org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor;
import org.eclipse.jdt.internal.ui.javaeditor.JavaEditor;
import org.eclipse.jface.text.IDocument;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.texteditor.ITextEditorActionConstants;
/**
*
* @author Michal Chmielewski (michal.chmielewski@oracle.com)
* @date Jul 17, 2007
*
*/
@SuppressWarnings("nls")
public class JavaTextEditor extends JavaEditor {
/** The Editor ID */
public static final String TEXT_EDITOR_ID = "org.eclipse.bpel.examples.extensionPoints.javaEditor";
/**
*
*/
public JavaTextEditor() {
super();
setDocumentProvider(new TextDocumentProvider());
}
/**
* Remove unnecessary actions.
*/
@Override
protected void createActions() {
super.createActions();
setAction(ITextEditorActionConstants.PRINT, null);
setAction(ITextEditorActionConstants.SAVE, null);
setAction(ITextEditorActionConstants.REVERT_TO_SAVED, null);
}
/**
* Returns the current contents of this editor.
* @return the contents of the editor
*/
public String getContents() {
IEditorInput input = getEditorInput();
IDocument doc = getDocumentProvider().getDocument(input);
return doc.get();
}
/**
* Removes the dirty state.
*/
public void markAsClean() {
// this is almost a no-op
doSave(null);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.ui.javaeditor.JavaEditor#getCorrespondingElement(org.eclipse.jdt.core.IJavaElement)
*/
@Override
protected IJavaElement getCorrespondingElement(IJavaElement element) {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.ui.javaeditor.JavaEditor#getElementAt(int)
*/
@Override
protected IJavaElement getElementAt(int offset) {
// TODO Auto-generated method stub
return null;
}
}