The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

Binding rules for instantiating default XML content to an XSD

Consider the following XSD fragment: <xs:element name="Persons"> <xs:sequence> <xs:element name="Person" type="personType" minOccurs="0" maxOccurs="unbounded"/> ...
1
vote
0answers
34 views
+50

UML metamodel: derived, derived union and subsetting

If you have ever worked with the metamodel of UML, you propably know the concepts of unions and subsets - As far as I understand it: Attributes and associations of an element/class marked as ...
2
votes
1answer
33 views

Associations betweens actors and usecases in the UML2 Metamodel

I'm trying to understand the rules defined by the UML2 metamodel for associations between actors and usecases in usecase diagrams. I understand that actors and usecases can take part in ...
0
votes
1answer
29 views

xtend2 code generation with ecore meta-model

I created an ecore-Metamodel, a genmodel and a corresponding model. Now I want to generate Code from this. I found this post and wanted to implement it. I get no errors and so on, but how do I bring ...
0
votes
1answer
23 views

Handling meta of class (reference to properties)

I am trying to set up a small metamodel in order to reference some properties on multiple classes. Example: Using the classes below, I'd like to store only Person.name and Person.surname in ...
0
votes
1answer
27 views

Hibernate Entity Export

My task is to export a database via hibernate. The starting point is any entity in my model. The selected entity has to navigate through all its referenced objects and store it in my target model ...
1
vote
3answers
184 views

UML class diagram metamodel

Where can I find a simplified class diagram metamodel ? It's for a ATL ATLAS Transformation Language project, I need to transform a entity class diagram to SQL database. thank you .
1
vote
1answer
215 views

JPA2 - How to order by field in Embedded composite primary key in a Join in OpenJPA

I'm trying to replicate the following, working query using the Criteria Query API + RAD/Dali-auto-generated static canonical metamodels for OpenJPA 2.1.2-SNAPSHOT on WebSphere v8.0.0.5: `SELECT * ...
0
votes
1answer
83 views

how to access to subproperties with jpa metamodel in where clause

I have a two entities with relation between they are. public class Client implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue private Integer id; @NotNull ...
0
votes
1answer
126 views

xtext: Relation between AST, Metamodel and parse tree

Can someone explain me the relationship between a parse tree, AST and metamodel. I know so far that xtext derive an EMF Ecore metamodel out of the grammar and generate a parser with antlr. But how ...
0
votes
0answers
15 views

Metamodel to represent a class

I am trying to make a metamodel to represent a class with its components(attributes, operations...) and I don't find a good metamodel that fits with my needs. Can anybody help me? Thanks in advance
0
votes
1answer
150 views

Static Metamodel, jpa and field name as a string

I generate metamodel of my entities with the Hibernate Static Metamodel Generator Annotation Processor. So, I can build criteria properly by using field (compilation check safe) like this instead of ...
1
vote
0answers
92 views

Defining Mongoid Models on the fly

I would highly appreciate if someone could critique this approach for me. I'm building an application where a user can define several attributes & generate a form to share with his users, much ...
0
votes
3answers
238 views

Custom Ad-hoc reporting architecture

I will describe the goal I'm trying to accomplish and any architectural and technical suggestions on how to design a solution are appreciated. I'm working on an app that needs to allow end users to ...
0
votes
1answer
16 views

How can I solve this error when I´m writing a model based on a previous metamodel using xText?

I have written this metamodel in a xText project: Screen: "Screen name: " name = ID "Level: " level = STRING "End: " end = INT background = [Background] character = [Character] ...
2
votes
1answer
204 views

Generate the JPA 2.0 metamodel via maven without persistence.xml?

Is there any way to generate the JPA 2.0 metamodel via maven without having a persistence.xml file. I'm using eclipselink. In my Java EE-projects I'm doing something like the following wich works ...
1
vote
4answers
242 views

Generic way to get JPA entity version

I have an unknown JPA entity and need to know it's version. I could not find a way to do this generically. I tried the metamodel, but don't know what to pass to getVersion() method: Object entity = ...
2
votes
0answers
282 views

JPA static metamodel with @MappedSuperclass (with a bit of Generation Gap Pattern)

I tried to achieve Generation Gap Pattern with JPA entities. Here is the solution we choose ( <-- are inheritance) BaseEntity <-- EntityGenerated <-- Entity The EntityGenerated type is ...
6
votes
1answer
108 views

Ast representation of lambda function

I'm developing and Abstract Syntax Tree meta-model for a smalltalk and right now I have troubles with modeling a blocks. They are sort of literals but on the other hand they are behavioral entities ...
0
votes
1answer
200 views

Meta-Modeling Neo4J Database

What is the best way to meta model my Neo4j Nodes and Relationships. I need this because I will only know what object/node will be created during runtime. Here is some explanation of what I'm trying ...
0
votes
1answer
52 views

Validate that ecore-model is compliant with metamodel

What is the easieset way to see that an ecore-model is the model of a metamodel. I'm not interested in OCL, just that the model is a concrete model derived from the metamodel. I want to do this using ...
0
votes
0answers
181 views

Embed an Ecore metamodel inside an Acceleo Eclipse plugin

I'm working on an Eclipse plugin that generates code from a model description file (XMI format). I use Acceleo to create it. I create the UI Launcher project from my working Acceleo project. Then I ...
3
votes
1answer
581 views

Load EMF Model instance in XTend

I am building a code generator in XTend where I already have an input model and meta model. That is, I use ATL to generate the input model for my XTend code generator (as part of a transformation ...
0
votes
1answer
227 views

Hibernate ORM to map to non-classes

I'm building the storage subsystem for an application platform. The metamodel will be dynamic (changeable at runtime). I have a metamodel to represent the model structure (complete with pseudo-classes ...
1
vote
1answer
134 views

How to specifiy enumeration literal as default value in UML Attribute?

I currently doing some model transformations using EMF-UML-Implementation. In my model transformation I create an uml class with some attributes. The attributes are type of enumerations I also ...
0
votes
2answers
93 views

Accessing JPA Class Mapping

Found an article in springsource which describes how to manipulate the schema name at runtime. http://forum.springsource.org/showthread.php?18715-changing-hibernate-schemas-at-runtime We're using ...
0
votes
1answer
130 views

putting an xls file in a jar

I have an xls spreadsheet that I'm querying using metaModel, and I want to keep the xls file in the jar, because it won't be updated. The method used for creating the data context doesn't allow ...
1
vote
1answer
163 views

Can the JPA 2.0 Metamodel be used to determine both sides of a bi-directional association

I am building a library that directly exposes entities within a persistence unit via a REST interface, to be included into a JAX-RS or standard web application. In order to facilitate the usability ...
1
vote
1answer
173 views

Why the metamodel generated by JPA 2.0 makes fields VOLATILE?

The new feature for type safe queries generates a metamodel for the classes, but why these fields aren't final instead of volatile ? public static volatile SingularAttribute<Presentation, ...
0
votes
1answer
128 views

How to get tool-readable XMI with Atlas Transformation Language

I'm a beginner with Atlas Transformation Language and have already made some steps with transforming models based on severeal meta-models. Now I want to transform a specified model based on metamodel1 ...
0
votes
2answers
275 views

Validate instance (Object diagram) against a Meta Model

I have to develop an API that take as an input a Meta Model (class diagram) and his instance (object diagram) but I don't know how to do it in a programaticly way. I made some research and I found ...
0
votes
1answer
440 views

Fixed column value when using JPA, Criteria API and a static metamodel

Given the following: CriteriaQuery<SomeDTO> cQuery; CriteriaBuilder cb; Root<SomeClass> r; ... cQuery.select(cb.construct(SomeDTO.class, "FIXED VALUE", r.get(SomeClass_.someValue) ...
1
vote
1answer
691 views

JPA: How to perform a LIKE with a NUMBER column in a static JPA MetaModel?

I do have a static metamodel with a NUMBER (actually, BigDecimal, don't ask why) column. Now I would like to do a LIKE query against that number column: CriteriaBuilder cb; ...
1
vote
2answers
869 views

Eclipse Indigo, how to autogenerate Entity Meta Model

I have read this on how to auto-generate the Entity Meta Model, but I think there is something wrong. I have: Eclipse Indigo SR2, build 20120216-1857 and configured the "Annotation Processor" as ...
2
votes
1answer
171 views

Can I make an Ecore metamodel that enables models to reference Java classes?

Suppose I want to design an Ecore metamodel that looks something like this, designed to be used to "run" a list of classes: JavaClassRunnerList 0..* JavaClass And assume I have some Java project ...
0
votes
1answer
139 views

Creating a meta model using UML convention and creating a data model out of it

Sorry if the question sounds too vague. I will improve based on your feedback. I have managed to prepare a UML model of a problem domain. This is essentially a class diagram describing class ...
1
vote
1answer
189 views

How do I reference the -s flag for javac in an ant script?

I am trying to compile the canonical metamodel classes for some JPA entities using an ant script. I am using OpenJPA. I would like the generated files to be located in a subdirectory which, ...
2
votes
3answers
396 views

DynamicData - How can I show the child count in the Children.ascx.cs FieldTemplate?

MS DynamicData's Children.ascx.cs file has a Page_Load method that returns a hyperlink which says "View Children". I want to append the number of children to the end of the hyperlink text. Below is my ...
5
votes
2answers
422 views

Why do the JPA2 MetaModel get generated with volatile members?

I have just used org.apache.openjpa.persistence.meta.AnnotationProcessor6 to generate the MetaModel for my JPA2 entities. @javax.annotation.Generated ...
1
vote
1answer
251 views

UI Acceleo Launcher Project doesn't work

I've followed this simple tutorial wiki.eclipse.org/Acceleo/Getting_Started my aim is creating an UI launcher... However when I finish and a click on 'Acceleo Model to Text'>'generate' the folder ...
2
votes
2answers
1k views

How to get SingularAttribute mapped value of a persistent object?

I have a persistent object (Action) and auto generated data model (Action_). By having an object of Action class and an instance of SingularAttribute, is it possible to get the field corresponding to ...
1
vote
1answer
383 views

Metamodel classes generated by Hibernate tools

I'm using Hibernate Tools in Eclipse to reverse engineer the domain entities of an existing database. I more-or-less have everything generating how I want, although I still get a batch of "Metamodel" ...
1
vote
1answer
453 views

Tutorial for building a domain specific visual language using Eclipse

Is there an implementation example on how to build a domain specific visual language ( for example modeling a Petri-Net) using Eclipse?
1
vote
3answers
508 views

Rails custom meta model?

I'd like to be able to add "meta" information to a model, basically user-defined fields. So, for instance, let's imagine a User model: I define fields for first name, last name, age, gender. I would ...
1
vote
1answer
3k views

JPA Eclipselink Subquery in where clause with between, CriteriaBuilder and metamodel

I want to do this query with metamodel but I can't!! I dont know how to do this. MYSQL QUERY (with this query I want to get all the rows from the Clases table that are teaching in this moment): ...
0
votes
1answer
179 views

How to get Class Model name from ManyToManyField in Django

I need to get Class Model name from #django.db.models.fields.related.ManyToManyField object.For example: class Source(models.Model): groups = models.ManyToManyField(Group) def ...
0
votes
2answers
330 views

Tool support for MOF (Meta Object Facility)

I was looking into OMG's Business Process Definition MetaModel (BPDM) and found the meta-model definition as XMI/CMOF(Complete MOF) file (download here). Now I was looking for any tools that support ...
8
votes
1answer
4k views

How to implement polymorphic JPA entities with generic relations

I'm trying to use JPA 2.0 to create polymorphic entities with generic relations. There should be two tables, an event table and a notification table. Inside those table are concrete entities that are ...
1
vote
2answers
1k views

MDA : Model Driven Architecture

Need a idea for developing very simple application demonstrating concepts of MDA.
6
votes
1answer
245 views

What is a clabject?

I am trying to find a clear definition of clabject. Has anyone a good one ?

1 2