Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Library generator violates correct file structure #253

Open
priefyou opened this issue Jan 28, 2020 · 0 comments
Open

Library generator violates correct file structure #253

priefyou opened this issue Jan 28, 2020 · 0 comments
Labels
bug Something isn't working generator Issues concerning the code generator J3 Issues concerning only J3 J4 Issues concerning only J4

Comments

@priefyou
Copy link
Collaborator

priefyou commented Jan 28, 2020

The file structure of generated libraries does not adhere to the correct file structure of the generator:

image

I testet it with the following extenson model code:

Library MyConference {
	Manifest {
		authors {
			Author "John Doe" {
				authorEmail = "[email protected]"
			}
		}
		copyright = "Copyright (C) 2018 All right reserved."
		license = "GNU General Public License"
		version = "1.0.1"
	}
	
	languages {
		Language de-DE {}
		Language system de-DE {}
		Language en-GB {}
		Language system en-GB {}
	}
	
	packages {
		Package conference {
			classes {
				Class ParticipantHelper {
					*entities = Participant
					methods {
						Method checkPayment {
							returnValue =  madePayment : Boolean Default = "false"
							methodParameters {
								methodParameter participantID : Integer 
							}
						}
					}
				}
			}
		}
	}
}

@priefyou priefyou added bug Something isn't working generator Issues concerning the code generator J3 Issues concerning only J3 J4 Issues concerning only J4 labels Jan 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working generator Issues concerning the code generator J3 Issues concerning only J3 J4 Issues concerning only J4
Projects
None yet
Development

No branches or pull requests

1 participant