Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » Teneo resources and the EMF Validation framework do not properly work together
Teneo resources and the EMF Validation framework do not properly work together [message #116142] Thu, 27 March 2008 14:57 Go to next message
Florian Hackenberger is currently offline Florian HackenbergerFriend
Messages: 123
Registered: July 2009
Senior Member
Hi!

I'm trying to use the EMF Validation framework (not to be confused with the
EValidator API) together with an EMF editor based on JPOXResource. The
editor works fine, I can run the validation and I even get results in the
form of a popup window. Problem marker generation (with
EclipseResourcesUtil used by ValidateAction) however, is broken because
calls to IFile EditUIMarkerHelper::getFile(Object datum) return null for
JPOXResource objects. The getFile method propagates to
MarkerHelper::getFile(URI uri)) which checks if the URI is a platform URI
and returns null if it is not.
Are there any workarounds known for this problem?

Cheers,
Florian
--
Florian Hackenberger
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116169 is a reply to message #116142] Thu, 27 March 2008 15:32 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Florian,
With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
protected IFile getFile(Object datum)
{
if (datum instanceof IFileEditorInput)
{
return ((IFileEditorInput)datum).getFile();
}
else if (datum instanceof IFile)
{
return (IFile)datum;
}
else if (datum instanceof Diagnostic)
{
return getFile((Diagnostic)datum);
}
return null;
}

what type is the datum object?

For the rest I do not know that much about the validation framework. Questions regarding validation
are answered on the EMF newsgroup which I added to this post.

btw, I had the same type of issues while integrating teneo and gmf. To solve that I had to change
part of the gmf logic. With gmf this was easy as I could do this in the generated code.

gr. Martin

DI Florian Hackenberger wrote:
> Hi!
>
> I'm trying to use the EMF Validation framework (not to be confused with the
> EValidator API) together with an EMF editor based on JPOXResource. The
> editor works fine, I can run the validation and I even get results in the
> form of a popup window. Problem marker generation (with
> EclipseResourcesUtil used by ValidateAction) however, is broken because
> calls to IFile EditUIMarkerHelper::getFile(Object datum) return null for
> JPOXResource objects. The getFile method propagates to
> MarkerHelper::getFile(URI uri)) which checks if the URI is a platform URI
> and returns null if it is not.
> Are there any workarounds known for this problem?
>
> Cheers,
> Florian


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116182 is a reply to message #116169] Thu, 27 March 2008 15:45 Go to previous messageGo to next message
Florian Hackenberger is currently offline Florian HackenbergerFriend
Messages: 123
Registered: July 2009
Senior Member
Martin Taal wrote:
> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
<snipped/>
> what type is the datum object?
The method which is called is getFile(URI), getFile(Object) is overridden by
EditUIMarkerHelper. After digging a bit deeper, it became clear that the
Eclipse Marker support is based on IResource objects. Which leads me to the
question: Is there an adapter (or something else) available mapping
JPOXResource / StoreResource to IResource?

I have found a references here:
http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
but unfortunately it does not provide a solution. The original thread on the
eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php

Cheers,
Florian

--
Florian Hackenberger
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116195 is a reply to message #116182] Thu, 27 March 2008 17:13 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: merks.ca.ibm.com

This is a multi-part message in MIME format.
--------------050707060007060809050305
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Florian,

It's certainly potentially possible that the URI scheme Teneo uses for
accessing resources could be registered with Eclipse's EFS
(EclipseFileSystem) so that the resources could be surfaced as
IResources in the workspace. But I don't think Martin has done anything
like that.

The EMF newsgroup is definitely still accessible since I'm answering
your question from that newsgroup.
<news://news.eclipse.org/eclipse.tools.emf>

news://news.eclipse.org/eclipse.tools.emf


DI Florian Hackenberger wrote:
> Martin Taal wrote:
>
>> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
>>
> <snipped/>
>
>> what type is the datum object?
>>
> The method which is called is getFile(URI), getFile(Object) is overridden by
> EditUIMarkerHelper. After digging a bit deeper, it became clear that the
> Eclipse Marker support is based on IResource objects. Which leads me to the
> question: Is there an adapter (or something else) available mapping
> JPOXResource / StoreResource to IResource?
>
> I have found a references here:
> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
> but unfortunately it does not provide a solution. The original thread on the
> eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php
>
> Cheers,
> Florian
>
>


--------------050707060007060809050305
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Florian,<br>
<br>
It's certainly potentially possible that the URI scheme Teneo uses for
accessing resources could be registered with Eclipse's EFS
(EclipseFileSystem) so that the resources could be surfaced as
IResources in the workspace.&nbsp; But I don't think Martin has done
anything like that.&nbsp;&nbsp;&nbsp; <br>
<br>
The EMF newsgroup is definitely still accessible since I'm answering
your question from that newsgroup.<a
href="news://news.eclipse.org/eclipse.tools.emf"><br>
</a>
<blockquote><a href="news://news.eclipse.org/eclipse.tools.emf">news://news.eclipse.org/eclipse.tools.emf</a><br>
</blockquote>
<br>
DI Florian Hackenberger wrote:
<blockquote cite="mid:fsgffk$qh1$1@build.eclipse.org" type="cite">
<pre wrap="">Martin Taal wrote:
</pre>
<blockquote type="cite">
<pre wrap="">With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
</pre>
</blockquote>
<pre wrap=""><!---->&lt;snipped/&gt;
</pre>
<blockquote type="cite">
<pre wrap="">what type is the datum object?
</pre>
</blockquote>
<pre wrap=""><!---->The method which is called is getFile(URI), getFile(Object) is overridden by
EditUIMarkerHelper. After digging a bit deeper, it became clear that the
Eclipse Marker support is based on IResource objects. Which leads me to the
question: Is there an adapter (or something else) available mapping
JPOXResource / StoreResource to IResource?

I have found a references here:
<a class="moz-txt-link-freetext" href=" http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html"> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html</a>
but unfortunately it does not provide a solution. The original thread on the
eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
<a class="moz-txt-link-freetext" href=" http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php"> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php</a>

Cheers,
Florian

</pre>
</blockquote>
<br>
</body>
</html>

--------------050707060007060809050305--
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116260 is a reply to message #116195] Thu, 27 March 2008 19:39 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Yes as Ed says I have not done anything with EFS. I found this article which gives a nice overview
of what is required to implement an efs:
http://www.eclipsezone.com/articles/efs/

It is an interesting topic although I wonder how the efs can be mapped to a relational db (and vice
versa). Florian, can you enter a bugzilla for this?
As my time is limited it can take a while before this is done. Contributions regarding this topic
are ofcourse more then welcome!

btw, afaics adding efs support to Teneo does not solve the fact that the uri is not a platform uri
and that MarkerHelper returns null.

gr. Martin

Ed Merks wrote:
> Florian,
>
> It's certainly potentially possible that the URI scheme Teneo uses for
> accessing resources could be registered with Eclipse's EFS
> (EclipseFileSystem) so that the resources could be surfaced as
> IResources in the workspace. But I don't think Martin has done anything
> like that.
>
> The EMF newsgroup is definitely still accessible since I'm answering
> your question from that newsgroup.
> <news://news.eclipse.org/eclipse.tools.emf>
>
> news://news.eclipse.org/eclipse.tools.emf
>
>
> DI Florian Hackenberger wrote:
>> Martin Taal wrote:
>>
>>> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
>>>
>> <snipped/>
>>
>>> what type is the datum object?
>>>
>> The method which is called is getFile(URI), getFile(Object) is overridden by
>> EditUIMarkerHelper. After digging a bit deeper, it became clear that the
>> Eclipse Marker support is based on IResource objects. Which leads me to the
>> question: Is there an adapter (or something else) available mapping
>> JPOXResource / StoreResource to IResource?
>>
>> I have found a references here:
>> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
>> but unfortunately it does not provide a solution. The original thread on the
>> eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
>> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php
>>
>> Cheers,
>> Florian
>>
>>
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116308 is a reply to message #116260] Fri, 28 March 2008 09:55 Go to previous messageGo to next message
Florian Hackenberger is currently offline Florian HackenbergerFriend
Messages: 123
Registered: July 2009
Senior Member
Martin Taal wrote:
> btw, afaics adding efs support to Teneo does not solve the fact that the
> uri is not a platform uri and that MarkerHelper returns null.
I just found a workaround using the ejdo resource. I simply create a project
in the workspace, calculate the file url for the ejdo file I want to use
(it's stored in a plugin) using FileLocator, create a new file link to the
ejdo file within the new project and use the project url of the file link
to open the editor. Problem solved. shall I document the workaround
somewhere?

Cheers,
Florian

--
Florian Hackenberger
Re: Teneo resources and the EMF Validation framework do not properly work together [message #116313 is a reply to message #116308] Fri, 28 March 2008 10:09 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Yes it would be great if you can write up a small page with the problem description and the solution
and then send it to me. I will then add it to the docs.

Thanks!

gr. Martin

DI Florian Hackenberger wrote:
> Martin Taal wrote:
>> btw, afaics adding efs support to Teneo does not solve the fact that the
>> uri is not a platform uri and that MarkerHelper returns null.
> I just found a workaround using the ejdo resource. I simply create a project
> in the workspace, calculate the file url for the ejdo file I want to use
> (it's stored in a plugin) using FileLocator, create a new file link to the
> ejdo file within the new project and use the project url of the file link
> to open the editor. Problem solved. shall I document the workaround
> somewhere?
>
> Cheers,
> Florian
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616012 is a reply to message #116142] Thu, 27 March 2008 15:32 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Florian,
With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
protected IFile getFile(Object datum)
{
if (datum instanceof IFileEditorInput)
{
return ((IFileEditorInput)datum).getFile();
}
else if (datum instanceof IFile)
{
return (IFile)datum;
}
else if (datum instanceof Diagnostic)
{
return getFile((Diagnostic)datum);
}
return null;
}

what type is the datum object?

For the rest I do not know that much about the validation framework. Questions regarding validation
are answered on the EMF newsgroup which I added to this post.

btw, I had the same type of issues while integrating teneo and gmf. To solve that I had to change
part of the gmf logic. With gmf this was easy as I could do this in the generated code.

gr. Martin

DI Florian Hackenberger wrote:
> Hi!
>
> I'm trying to use the EMF Validation framework (not to be confused with the
> EValidator API) together with an EMF editor based on JPOXResource. The
> editor works fine, I can run the validation and I even get results in the
> form of a popup window. Problem marker generation (with
> EclipseResourcesUtil used by ValidateAction) however, is broken because
> calls to IFile EditUIMarkerHelper::getFile(Object datum) return null for
> JPOXResource objects. The getFile method propagates to
> MarkerHelper::getFile(URI uri)) which checks if the URI is a platform URI
> and returns null if it is not.
> Are there any workarounds known for this problem?
>
> Cheers,
> Florian


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616013 is a reply to message #116169] Thu, 27 March 2008 15:45 Go to previous message
Florian Hackenberger is currently offline Florian HackenbergerFriend
Messages: 123
Registered: July 2009
Senior Member
Martin Taal wrote:
> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
<snipped/>
> what type is the datum object?
The method which is called is getFile(URI), getFile(Object) is overridden by
EditUIMarkerHelper. After digging a bit deeper, it became clear that the
Eclipse Marker support is based on IResource objects. Which leads me to the
question: Is there an adapter (or something else) available mapping
JPOXResource / StoreResource to IResource?

I have found a references here:
http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
but unfortunately it does not provide a solution. The original thread on the
eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php

Cheers,
Florian

--
Florian Hackenberger
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616014 is a reply to message #116182] Thu, 27 March 2008 17:13 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33140
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------050707060007060809050305
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Florian,

It's certainly potentially possible that the URI scheme Teneo uses for
accessing resources could be registered with Eclipse's EFS
(EclipseFileSystem) so that the resources could be surfaced as
IResources in the workspace. But I don't think Martin has done anything
like that.

The EMF newsgroup is definitely still accessible since I'm answering
your question from that newsgroup.
<news://news.eclipse.org/eclipse.tools.emf>

news://news.eclipse.org/eclipse.tools.emf


DI Florian Hackenberger wrote:
> Martin Taal wrote:
>
>> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
>>
> <snipped/>
>
>> what type is the datum object?
>>
> The method which is called is getFile(URI), getFile(Object) is overridden by
> EditUIMarkerHelper. After digging a bit deeper, it became clear that the
> Eclipse Marker support is based on IResource objects. Which leads me to the
> question: Is there an adapter (or something else) available mapping
> JPOXResource / StoreResource to IResource?
>
> I have found a references here:
> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
> but unfortunately it does not provide a solution. The original thread on the
> eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php
>
> Cheers,
> Florian
>
>


--------------050707060007060809050305
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Florian,<br>
<br>
It's certainly potentially possible that the URI scheme Teneo uses for
accessing resources could be registered with Eclipse's EFS
(EclipseFileSystem) so that the resources could be surfaced as
IResources in the workspace.&nbsp; But I don't think Martin has done
anything like that.&nbsp;&nbsp;&nbsp; <br>
<br>
The EMF newsgroup is definitely still accessible since I'm answering
your question from that newsgroup.<a
href="news://news.eclipse.org/eclipse.tools.emf"><br>
</a>
<blockquote><a href="news://news.eclipse.org/eclipse.tools.emf">news://news.eclipse.org/eclipse.tools.emf</a><br>
</blockquote>
<br>
DI Florian Hackenberger wrote:
<blockquote cite="mid:fsgffk$qh1$1@build.eclipse.org" type="cite">
<pre wrap="">Martin Taal wrote:
</pre>
<blockquote type="cite">
<pre wrap="">With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
</pre>
</blockquote>
<pre wrap=""><!---->&lt;snipped/&gt;
</pre>
<blockquote type="cite">
<pre wrap="">what type is the datum object?
</pre>
</blockquote>
<pre wrap=""><!---->The method which is called is getFile(URI), getFile(Object) is overridden by
EditUIMarkerHelper. After digging a bit deeper, it became clear that the
Eclipse Marker support is based on IResource objects. Which leads me to the
question: Is there an adapter (or something else) available mapping
JPOXResource / StoreResource to IResource?

I have found a references here:
<a class="moz-txt-link-freetext" href=" http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html"> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html</a>
but unfortunately it does not provide a solution. The original thread on the
eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
<a class="moz-txt-link-freetext" href=" http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php"> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php</a>

Cheers,
Florian

</pre>
</blockquote>
<br>
</body>
</html>

--------------050707060007060809050305--


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616019 is a reply to message #116195] Thu, 27 March 2008 19:39 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Yes as Ed says I have not done anything with EFS. I found this article which gives a nice overview
of what is required to implement an efs:
http://www.eclipsezone.com/articles/efs/

It is an interesting topic although I wonder how the efs can be mapped to a relational db (and vice
versa). Florian, can you enter a bugzilla for this?
As my time is limited it can take a while before this is done. Contributions regarding this topic
are ofcourse more then welcome!

btw, afaics adding efs support to Teneo does not solve the fact that the uri is not a platform uri
and that MarkerHelper returns null.

gr. Martin

Ed Merks wrote:
> Florian,
>
> It's certainly potentially possible that the URI scheme Teneo uses for
> accessing resources could be registered with Eclipse's EFS
> (EclipseFileSystem) so that the resources could be surfaced as
> IResources in the workspace. But I don't think Martin has done anything
> like that.
>
> The EMF newsgroup is definitely still accessible since I'm answering
> your question from that newsgroup.
> <news://news.eclipse.org/eclipse.tools.emf>
>
> news://news.eclipse.org/eclipse.tools.emf
>
>
> DI Florian Hackenberger wrote:
>> Martin Taal wrote:
>>
>>> With me (Eclipse 3.4) the MarkerHelper.getFile method is like this:
>>>
>> <snipped/>
>>
>>> what type is the datum object?
>>>
>> The method which is called is getFile(URI), getFile(Object) is overridden by
>> EditUIMarkerHelper. After digging a bit deeper, it became clear that the
>> Eclipse Marker support is based on IResource objects. Which leads me to the
>> question: Is there an adapter (or something else) available mapping
>> JPOXResource / StoreResource to IResource?
>>
>> I have found a references here:
>> http://dev.eclipse.org/newslists/news.eclipse.platform/msg57 934.html
>> but unfortunately it does not provide a solution. The original thread on the
>> eclipse.tools.emf newsgroup is unfortunately not accessible anymore:
>> http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools. emf/2006/Aug/index.php
>>
>> Cheers,
>> Florian
>>
>>
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616024 is a reply to message #116260] Fri, 28 March 2008 09:55 Go to previous message
Florian Hackenberger is currently offline Florian HackenbergerFriend
Messages: 123
Registered: July 2009
Senior Member
Martin Taal wrote:
> btw, afaics adding efs support to Teneo does not solve the fact that the
> uri is not a platform uri and that MarkerHelper returns null.
I just found a workaround using the ejdo resource. I simply create a project
in the workspace, calculate the file url for the ejdo file I want to use
(it's stored in a plugin) using FileLocator, create a new file link to the
ejdo file within the new project and use the project url of the file link
to open the editor. Problem solved. shall I document the workaround
somewhere?

Cheers,
Florian

--
Florian Hackenberger
Re: Teneo resources and the EMF Validation framework do not properly work together [message #616025 is a reply to message #116308] Fri, 28 March 2008 10:09 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Yes it would be great if you can write up a small page with the problem description and the solution
and then send it to me. I will then add it to the docs.

Thanks!

gr. Martin

DI Florian Hackenberger wrote:
> Martin Taal wrote:
>> btw, afaics adding efs support to Teneo does not solve the fact that the
>> uri is not a platform uri and that MarkerHelper returns null.
> I just found a workaround using the ejdo resource. I simply create a project
> in the workspace, calculate the file url for the ejdo file I want to use
> (it's stored in a plugin) using FileLocator, create a new file link to the
> ejdo file within the new project and use the project url of the file link
> to open the editor. Problem solved. shall I document the workaround
> somewhere?
>
> Cheers,
> Florian
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Previous Topic:Problem with GenericGenerator annotation
Next Topic:HibernateConfiguration not accessable
Goto Forum:
  


Current Time: Thu Apr 25 13:21:48 GMT 2024

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

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

Back to the top