Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-ui-dev] org.eclipse.ui.editors.text.TextEditor can be accesed just on runable time?

org.eclipse.ui.editors.text.TextEditor is class that can be accesed just on runable time in 3.0.1. If I try to use it or any other class - Eclipse shows compile errors?
What should I do?
 
Why shouldn't I use
                org.eclipse.ui.editors.text.TextEditor te;
                org.eclipse.ui.texteditor.ITextEditor ite;
 
but following part of code print me
           iePart1=page.openEditor(fei_file1,DEFAULT_TEXT_EDITOR_ID);
           System.out.println(iePart1.getClass().toString());
regulary org.eclipse.ui.editors.text.TextEditor
 
what should I do?
 
[excuse me if this is not good mailing list for questions about developing Eclipse plugin and point me about right one, thanks ]

 

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com


Back to the top