Questions tagged [eclipse-jet]

Eclipse JET (Java Emitter Templates) is part of the Eclipse Model to Text (M2T) project. It is used for generating source code from models, such as EMF or UML.

Eclipse JET (Java Emitter Templates) is part of the Eclipse Model to Text project (M2T). It is used for generating source code from models, such as EMF or UML.

9 questions
2
votes
5 answers

Is there something like JET (Java Emitter Templates) but without Eclipse-dependencies?

I wanted to use JET (Java Emitter Templates) in my Netbeans projects, but had to find out that JET heavily depends on Eclipse libraries. Is there something similar to JET, but as a standalone project? Something which is open source and well…
ivan_ivanovich_ivanoff
  • 19,113
  • 27
  • 81
  • 100
2
votes
1 answer

Java Code Generation for a Framework

I am working on a java-based framework for a Home Automation System. One of the requirements for this home automation system is that developers should be able to easily extend the functionality. I thought that a great way to simplify things would be…
2
votes
2 answers

Generated Java source with reflection

In my Java application I have a class Foo class Foo { String field1; String field2; } I would like to have some generated code which uses reflection on the fields in this class (Imaginary template language) #for each Field $f in…
idle
  • 1,117
  • 9
  • 17
1
vote
2 answers

Is there a JSP like Java based Web template engine that can load page templates from persistent storage?

I would like to provide users to write plugins to my application, the initial design and implementaion involve a Velocity (VTL) template engine to allow Secure: uesrs can't call internall Java code (without hacking using reflection) Simple:…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
1
vote
2 answers

Represent UML2 Stereotypes in EMF Ecore format to generate Java code via JET

working with Eclipse EMF, i am trying to convert a uml2-model (i.e. defined as xmi) with applied profiles to ecore to be able to manipulate the code generation. Anyone has an idea on how this could be done nicely? As it is not possible out of the…
reval
  • 11
  • 2
1
vote
1 answer

How to run a JET2 project templates without run an Eclipse application or OSGi framework?

When I run an JET2 project as an JET Transformation application I get this error: "Could not load JET template loader" However, my project is executed correctly when I run it as an Eclipse application. This is costly in terms of change, because…
vonigo
  • 19
  • 1
  • 4
1
vote
1 answer

unable to install jet plugin on eclipse JUNO

hello guys i tried to download Jet as an EMF Component but it doesn't work , so i tried to download an archived update i get the following error : An error occurred while collecting items to be installed session context…
Genjuro
  • 7,405
  • 7
  • 41
  • 61
0
votes
1 answer

Eclipse Modeling Framework - cannot load plugin.xml

I have been following this tutorial: http://www.vogella.com/articles/EclipseEMF/article.html I cannot deal with Step 5.2. Run your plugins I'm trying to open plugin.xml file but it gives me an error: Unsupported Content in Editor
javaGirl
  • 195
  • 1
  • 4
  • 13
0
votes
1 answer

SQLJet Table insert parameter

I guess I have a strange error while insert a record in a SQLJet database. I open the database connection and use following code to insert a test record. ISqlJetTable tbl = db.getTable("file"); tbl.insert("filename"); Eclipse shows me a red icon…
Andre Hofmeister
  • 3,185
  • 11
  • 51
  • 74