| /** |
| * Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg) |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Florian Pirchner - Initial implementation |
| */ |
| |
| package huhu { |
| |
| import org.eclipse.osbp.dsl.common.datatypes.my.*; |
| |
| entity sdfsdf extends asdf { |
| id String pid; |
| var Date pdate; |
| ref second [0 .. 1] myreference; |
| } |
| |
| entity second { |
| |
| id Long pid; |
| |
| var Date pdate; |
| } |
| |
| bean Bean1 { |
| id String pid; |
| transient Date pdate |
| } |
| |
| bean Bean2 extends Bean1 { |
| var Date pdate; |
| ref Bean3 [0 .. 1] myreference; |
| } |
| |
| bean Bean3 { |
| |
| var String firstname; |
| } |
| entity asdf { |
| transient Date bdate; |
| |
| } |
| |
| } |