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

Fix JavaDoc #632

Merged
merged 2 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Up @@ -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.
Expand Down