Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » eclipse xml editor
eclipse xml editor [message #466734] Tue, 24 April 2007 07:34 Go to next message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Is any way to implement Eclipse default XML editor?
I have RCP plugin and I need simple viewer for xml files. It would be
best some integrated in Eclipse.
Thanks for you ideas.
Michal
Re: eclipse xml editor [message #466736 is a reply to message #466734] Tue, 24 April 2007 07:37 Go to previous messageGo to next message
Eclipse UserFriend
Hi,

A fancy XML-Editor is part WTP-Project
(http://www.eclipse.org/webtools/wst/components.html). I don't know how
many dependencies it has but it's worth a try.

Tom

Michal Hybler schrieb:
> Is any way to implement Eclipse default XML editor?
> I have RCP plugin and I need simple viewer for xml files. It would be
> best some integrated in Eclipse.
> Thanks for you ideas.
> Michal
Re: eclipse xml editor [message #466838 is a reply to message #466736] Wed, 25 April 2007 09:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Tom Schindl wrote:
> Hi,
>
> A fancy XML-Editor is part WTP-Project
> (http://www.eclipse.org/webtools/wst/components.html). I don't know how
> many dependencies it has but it's worth a try.
>
> Tom
>
> Michal Hybler schrieb:
>> Is any way to implement Eclipse default XML editor?
>> I have RCP plugin and I need simple viewer for xml files. It would be
>> best some integrated in Eclipse.
>> Thanks for you ideas.
>> Michal
Thank you for your answer but there is no infos about how can I
implement this editor or where can I find it.Or I miss something?
Re: eclipse xml editor [message #466842 is a reply to message #466838] Wed, 25 April 2007 14:11 Go to previous messageGo to next message
Eclipse UserFriend
You don't have to implement it. Its already available. You need to download WST, package it in your app along with its dependencies and ship it :-)
Re: eclipse xml editor [message #466894 is a reply to message #466842] Thu, 26 April 2007 07:04 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Prakash wrote:
> You don't have to implement it. Its already available. You need to download WST, package it in your app along with its dependencies and ship it :-)
I have downloaded the WST.My Eclipse already contains all this plugins.
But how can I resolve which plugin is right for me(which contains
editor). And how can I use this editor - Will be the xml-editor
extension like usual editor or view?
Sorry if it is stupid question but Im really confused of this.
Thanks for your answers. Michal

P.S. Some example would be the best :)
Re: eclipse xml editor [message #466898 is a reply to message #466842] Thu, 26 April 2007 07:39 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: javaloco.argentina.com

this is a good editor
http://www.oxygenxml.com/eclipse_plugin.html
Re: eclipse xml editor [message #466902 is a reply to message #466894] Thu, 26 April 2007 08:11 Go to previous messageGo to next message
Eclipse UserFriend
Hm,

I had this working in 3.2 I think for a plugin I've written so it might
be possible that this isn't accurate any more.

You can take a look at it:

http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/

Tom

Michal Hybler schrieb:
> Prakash wrote:
>> You don't have to implement it. Its already available. You need to
>> download WST, package it in your app along with its dependencies and
>> ship it :-)
> I have downloaded the WST.My Eclipse already contains all this plugins.
> But how can I resolve which plugin is right for me(which contains
> editor). And how can I use this editor - Will be the xml-editor
> extension like usual editor or view?
> Sorry if it is stupid question but Im really confused of this.
> Thanks for your answers. Michal
>
> P.S. Some example would be the best :)
Re: eclipse xml editor [message #466906 is a reply to message #466902] Thu, 26 April 2007 08:51 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Tom Schindl wrote:
> Hm,
>
> I had this working in 3.2 I think for a plugin I've written so it might
> be possible that this isn't accurate any more.
>
> You can take a look at it:
>
> http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/
>
>
> Tom
>
> Michal Hybler schrieb:
>> Prakash wrote:
>>> You don't have to implement it. Its already available. You need to
>>> download WST, package it in your app along with its dependencies and
>>> ship it :-)
>> I have downloaded the WST.My Eclipse already contains all this
>> plugins. But how can I resolve which plugin is right for me(which
>> contains editor). And how can I use this editor - Will be the
>> xml-editor extension like usual editor or view?
>> Sorry if it is stupid question but Im really confused of this.
>> Thanks for your answers. Michal
>>
>> P.S. Some example would be the best :)

Im really sorry. I was wrong from the beginning :( .I need only viewer
not editor. Something as textViewer but with coloured syntax. My plan
was get something as I can see when I opened plugin.xml but without
editation. I dont need 3 windows only one with plain coloured text.
Sorry for incorrectness.
Regards,
Michal
Re: eclipse xml editor [message #466914 is a reply to message #466906] Thu, 26 April 2007 09:10 Go to previous messageGo to next message
Eclipse UserFriend
A that's easy. Simply run:

Project > Plugin > Plugin with an Editor.

This produces a very very simple XML-Editor.

Tom

Michal Hybler schrieb:
> Tom Schindl wrote:
>> Hm,
>>
>> I had this working in 3.2 I think for a plugin I've written so it
>> might be possible that this isn't accurate any more.
>>
>> You can take a look at it:
>>
>> http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/
>>
>>
>> Tom
>>
>> Michal Hybler schrieb:
>>> Prakash wrote:
>>>> You don't have to implement it. Its already available. You need to
>>>> download WST, package it in your app along with its dependencies and
>>>> ship it :-)
>>> I have downloaded the WST.My Eclipse already contains all this
>>> plugins. But how can I resolve which plugin is right for me(which
>>> contains editor). And how can I use this editor - Will be the
>>> xml-editor extension like usual editor or view?
>>> Sorry if it is stupid question but Im really confused of this.
>>> Thanks for your answers. Michal
>>>
>>> P.S. Some example would be the best :)
>
> Im really sorry. I was wrong from the beginning :( .I need only viewer
> not editor. Something as textViewer but with coloured syntax. My plan
> was get something as I can see when I opened plugin.xml but without
> editation. I dont need 3 windows only one with plain coloured text.
> Sorry for incorrectness.
> Regards,
> Michal
Re: eclipse xml editor [message #466920 is a reply to message #466914] Thu, 26 April 2007 09:52 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Do you mean new project? I have no plugin with an Editor there :(.
Could you been more accurately?
Sorry for this questions but I have long day :(.
Michal


DoTom Schindl wrote:
> A that's easy. Simply run:
>
> Project > Plugin > Plugin with an Editor.
>
> This produces a very very simple XML-Editor.
>
> Tom
>
> Michal Hybler schrieb:
>> Tom Schindl wrote:
>>> Hm,
>>>
>>> I had this working in 3.2 I think for a plugin I've written so it
>>> might be possible that this isn't accurate any more.
>>>
>>> You can take a look at it:
>>>
>>> http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/
>>>
>>>
>>> Tom
>>>
>>> Michal Hybler schrieb:
>>>> Prakash wrote:
>>>>> You don't have to implement it. Its already available. You need to
>>>>> download WST, package it in your app along with its dependencies
>>>>> and ship it :-)
>>>> I have downloaded the WST.My Eclipse already contains all this
>>>> plugins. But how can I resolve which plugin is right for me(which
>>>> contains editor). And how can I use this editor - Will be the
>>>> xml-editor extension like usual editor or view?
>>>> Sorry if it is stupid question but Im really confused of this.
>>>> Thanks for your answers. Michal
>>>>
>>>> P.S. Some example would be the best :)
>>
>> Im really sorry. I was wrong from the beginning :( .I need only viewer
>> not editor. Something as textViewer but with coloured syntax. My plan
>> was get something as I can see when I opened plugin.xml but without
>> editation. I dont need 3 windows only one with plain coloured text.
>> Sorry for incorrectness.
>> Regards,
>> Michal
Re: eclipse xml editor [message #466921 is a reply to message #466920] Thu, 26 April 2007 09:59 Go to previous messageGo to next message
Eclipse UserFriend
Please reply on to this list only and not to me personally.

1. File > New > Project
2. Page 1: Select "Plugin Project"
3. Page 2: "Enter Project Name"
4. Page 3: No Action required
5. Page 4: Select the "Plugin With an Editor"

Hit finish.

Tom

Michal Hybler schrieb:
> Do you mean new project? I have no plugin with an Editor there :(.
> Could you been more accurately?
> Sorry for this questions but I have long day :(.
> Michal
>
>
> DoTom Schindl wrote:
>> A that's easy. Simply run:
>>
>> Project > Plugin > Plugin with an Editor.
>>
>> This produces a very very simple XML-Editor.
>>
>> Tom
>>
>> Michal Hybler schrieb:
>>> Tom Schindl wrote:
>>>> Hm,
>>>>
>>>> I had this working in 3.2 I think for a plugin I've written so it
>>>> might be possible that this isn't accurate any more.
>>>>
>>>> You can take a look at it:
>>>>
>>>> http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/
>>>>
>>>>
>>>> Tom
>>>>
>>>> Michal Hybler schrieb:
>>>>> Prakash wrote:
>>>>>> You don't have to implement it. Its already available. You need to
>>>>>> download WST, package it in your app along with its dependencies
>>>>>> and ship it :-)
>>>>> I have downloaded the WST.My Eclipse already contains all this
>>>>> plugins. But how can I resolve which plugin is right for me(which
>>>>> contains editor). And how can I use this editor - Will be the
>>>>> xml-editor extension like usual editor or view?
>>>>> Sorry if it is stupid question but Im really confused of this.
>>>>> Thanks for your answers. Michal
>>>>>
>>>>> P.S. Some example would be the best :)
>>>
>>> Im really sorry. I was wrong from the beginning :( .I need only
>>> viewer not editor. Something as textViewer but with coloured syntax.
>>> My plan was get something as I can see when I opened plugin.xml but
>>> without editation. I dont need 3 windows only one with plain coloured
>>> text.
>>> Sorry for incorrectness.
>>> Regards,
>>> Michal
Re: eclipse xml editor [message #466923 is a reply to message #466921] Thu, 26 April 2007 10:07 Go to previous message
Eclipse UserFriend
Originally posted by: m.hybler.aegis.cz

Tom Schindl wrote:
> Please reply on to this list only and not to me personally.
>
> 1. File > New > Project
> 2. Page 1: Select "Plugin Project"
> 3. Page 2: "Enter Project Name"
> 4. Page 3: No Action required
> 5. Page 4: Select the "Plugin With an Editor"
>
> Hit finish.
>
> Tom
>
> Michal Hybler schrieb:
>> Do you mean new project? I have no plugin with an Editor there :(.
>> Could you been more accurately?
>> Sorry for this questions but I have long day :(.
>> Michal
>>
>>
>> DoTom Schindl wrote:
>>> A that's easy. Simply run:
>>>
>>> Project > Plugin > Plugin with an Editor.
>>>
>>> This produces a very very simple XML-Editor.
>>>
>>> Tom
>>>
>>> Michal Hybler schrieb:
>>>> Tom Schindl wrote:
>>>>> Hm,
>>>>>
>>>>> I had this working in 3.2 I think for a plugin I've written so it
>>>>> might be possible that this isn't accurate any more.
>>>>>
>>>>> You can take a look at it:
>>>>>
>>>>> http://publicsvn.bestsolution.at/repos/java/at.bestsolution. exswt.editor/trunk/
>>>>>
>>>>>
>>>>> Tom
>>>>>
>>>>> Michal Hybler schrieb:
>>>>>> Prakash wrote:
>>>>>>> You don't have to implement it. Its already available. You need
>>>>>>> to download WST, package it in your app along with its
>>>>>>> dependencies and ship it :-)
>>>>>> I have downloaded the WST.My Eclipse already contains all this
>>>>>> plugins. But how can I resolve which plugin is right for me(which
>>>>>> contains editor). And how can I use this editor - Will be the
>>>>>> xml-editor extension like usual editor or view?
>>>>>> Sorry if it is stupid question but Im really confused of this.
>>>>>> Thanks for your answers. Michal
>>>>>>
>>>>>> P.S. Some example would be the best :)
>>>>
>>>> Im really sorry. I was wrong from the beginning :( .I need only
>>>> viewer not editor. Something as textViewer but with coloured syntax.
>>>> My plan was get something as I can see when I opened plugin.xml but
>>>> without editation. I dont need 3 windows only one with plain
>>>> coloured text.
>>>> Sorry for incorrectness.
>>>> Regards,
>>>> Michal
Thanks :)
Previous Topic:Best practice to handle a null selection
Next Topic:menuContribution in 3.3
Goto Forum:
  


Current Time: Mon May 12 21:46:18 EDT 2025

Powered by FUDForum. Page generated in 0.04305 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top