Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [LIKELY JUNK][wtp-jst-dev] Need some support about Web Page Editor

Have you tried to debug the code and check the objects that are used?
 
What exactly is not working - is the documentProvider or the document null? Is the getEditorInput() null?
Check the object returned from textEditor.getDocumentProvider() when, you are using a simple text editor, and when you are using the Web Page Editor. Of which type are the instances?
 
Also check the object that is used as an editor input and is returned from getEditorInput(). In the Web Page Editor case the editor input might be something different than the mainly used FileEditorInput.
 
If you debug the code and check the instances you can easily check the implementation.
 
 
Best Regards,
Kiril


From: wtp-jst-dev-bounces@xxxxxxxxxxx [mailto:wtp-jst-dev-bounces@xxxxxxxxxxx] On Behalf Of huynh khai
Sent: Monday, 25. August 2008 20:21
To: wtp-jst-dev@xxxxxxxxxxx
Subject: [LIKELY JUNK][wtp-jst-dev] Need some support about Web Page Editor

Dear WTP Group,
My Name's Khai Huynh, I'm Vietnamese student. I have just install Eclipse WTP, I want to use "Web Page Editor" to design my html file, then I implement a plug-in which get content of "Web Page Editor" (get content of file html which I'm designing).

But I have problem about get content of "Web Page Editor". The follow code which is OK when I use some other text-editor, but it don't work when I use "Web Page Editor":
//--------------------------------------------------------------------
IDocumentProvider documentProvider;
ITextEditor textEditor = (ITextEditor)
window.getPages()[0].getActiveEditor();
documentProvider = textEditor.getDocumentProvider();
IDocument document;
document = documentProvider.getDocument(window.getPages()[0].getActiveEditor().getEditorInput());
// then document variable will contain the content of current editor, but it doesn't work with Web Page Editor
//--------------------------------------------------------------------
 
Can you help me to get content of Web Page Editor?
Can you give the sample code to get content of Web Page Editor?
Looking for your respond,
Thank you very much,

Best regards,
Khai Huynh

Back to the top