Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 28, 2024
1 parent 5fb65da commit 54ad69e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions .mvn/wrapper/MavenWrapperDownloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
public class MavenWrapperDownloader {

private static final String WRAPPER_VERSION = "0.5.6";

/** Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. */
private static final String DEFAULT_DOWNLOAD_URL =
"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
* @author Claudenir Fonseca
* @author Victor Viola
*/
/** @author Victor Viola */
/**
* @author Victor Viola
*/
public class ProjectConfigurations {

public static final boolean DEFAULT_IS_PLUGIN_ENABLED = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,19 @@ static boolean isPresentInOntoumlDiagram(IModelElement element) {
return ModelElement.getDiagrams(element).stream().anyMatch(Diagram::isOntoUMLDiagram);
}

/** @return <code>IModelElement</code> on which the object is based. */
/**
* @return <code>IModelElement</code> on which the object is based.
*/
public IModelElement getSourceModelElement();

/** @return object's type in OntoUML Schema. */
/**
* @return object's type in OntoUML Schema.
*/
public String getOntoUMLType();

/** @return object's ID (based on a <code>IModelElement</code>). */
/**
* @return object's ID (based on a <code>IModelElement</code>).
*/
public String getId();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@

public class VPContextUtils {

/** @return a set including selected model elements of the same type */
/**
* @return a set including selected model elements of the same type
*/
public static Set<IModelElement> getModelElements(VPContext context) {
if (isDiagramContext(context)) {
return Diagram.getSelectedModelElements(context.getDiagram(), getModelType(context));
Expand Down

0 comments on commit 54ad69e

Please sign in to comment.