Skip to content

Commit

Permalink
Merge pull request #632 from vitruv-tools/fix-javadoc
Browse files Browse the repository at this point in the history
Fix JavaDoc
larsk21 authored Nov 29, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 552d531 + ff7a414 commit 4e33286
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
<parent>
<groupId>tools.vitruv</groupId>
<artifactId>parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.6</version>
</parent>

<!-- Project Information -->
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ public VitruvServer(VirtualModelInitializer modelInitializer, int port) throws I
* Creates a new {@link VitruvServer} using the given {@link VirtualModelInitializer}.
* Sets the port which is used to open the server on to 8080.
*
* @param modelInitializer The initializer which creates an {@link InternalVirtualModel}.
* @param modelInitializer The initializer which creates an {@link tools.vitruv.framework.vsum.internal.InternalVirtualModel}.
*/
public VitruvServer(VirtualModelInitializer modelInitializer) throws IOException {
this(modelInitializer, DefaultConnectionSettings.STD_PORT);
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
import tools.vitruv.framework.views.ViewSelector;

/**
* A global cache holding {@link View}s, {@link ViewSelector}s and mappings of the form UUID <-> {@link EObject}.
* A global cache holding {@link View}s, {@link ViewSelector}s and mappings of the form UUID {@literal <->} {@link EObject}.
*/
public class Cache {
private Cache() throws InstantiationException {
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ public interface ViewProvider {
* models covered by this object.
*
* @param viewType the {@link ViewType} to create a selector for
* @returns a {@link ViewSelector} for given view type and the source models
* @return a {@link ViewSelector} for given view type and the source models
* covered by this object
*/
<S extends ViewSelector> S createSelector(ViewType<S> viewType);
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ public interface ViewType<S extends ViewSelector> {
*
* @param viewSource the {@link ChangeableViewSource} from which views shall be
* derived.
* @returns a {@link ViewSelector} for this view type
* @return a {@link ViewSelector} for this view type
*/
S createSelector(ChangeableViewSource viewSource);
}
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ class VsumFileSystemLayout {

/**
* Gets the {@link URI} of a model that stores metadata.
* @param metadataKeyThe key uniquely identifying the metadata model. The different parts of the key
* @param metadataKey The key uniquely identifying the metadata model. The different parts of the key
* can be used to convey some sort of hierarchy in the metadata. The key may contain
* arbitrary characters. The last key part contains the metadata model's file name
* and extension.

0 comments on commit 4e33286

Please sign in to comment.