You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Model (SAMM) and supports its use.
15
15
# Contributing Source Code (using GitHub)
16
16
17
17
* We use this GitHub repository to track issues and feature requests.
18
-
* For general discussions of the ESMF, modeling questions etc. we use the [community forum](https://www.eclipse.org/forums/index.php/f/617/).
18
+
* For general discussions of the ESMF, modeling questions etc. we use the [ESMF Chat](https://chat.eclipse.org/#/room/#eclipse-semantic-modeling-framework:matrix.eclipse.org).
19
19
* For discussions specific to development, the preferred way is the [developer mailing list](https://accounts.eclipse.org/mailing-list/esmf-dev).
Copy file name to clipboardexpand all lines: core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/loader/ModelElementFactory.java
+5-1
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,10 @@
83
83
importorg.apache.jena.vocabulary.RDF;
84
84
importorg.apache.jena.vocabulary.RDFS;
85
85
86
+
/**
87
+
* Used as part of the loading process in the {@link AspectModelLoader}, it creates instance for the the {@link ModelElement}s
Copy file name to clipboardexpand all lines: core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/GithubRepository.java
Copy file name to clipboardexpand all lines: core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/fs/StructuredModelsRoot.java
Copy file name to clipboardexpand all lines: core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/modelfile/RawAspectModelFile.java
+9
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,15 @@
23
23
importorg.apache.jena.rdf.model.Model;
24
24
importorg.apache.jena.rdf.model.ModelFactory;
25
25
26
+
/**
27
+
* An implementation of an {@link AspectModelFile} that knows about the RDF model content and source location, but has not
28
+
* instantiated the model elements yet. Calling {@link #elements()} on this file will throw an exception. It is intended
29
+
* to represent the intermediary result of loading an Aspect Model file, possibly from a remote location.
0 commit comments