Skip to content

Commit

Permalink
refactor: Format all Java files with google-java-format 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nileger committed Jan 4, 2023
1 parent ce50bfc commit 547f308
Show file tree
Hide file tree
Showing 167 changed files with 1,341 additions and 447 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;

/** @author Sascha Schneider, Philip Allgaier */
/**
* @author Sascha Schneider, Philip Allgaier
*/
public class ApromorePasswordSecurity {

// Encoding
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@
import org.oasisOpen.docs.wsbpel.x20.process.executable.TWait;
import org.oasisOpen.docs.wsbpel.x20.process.executable.TWhile;

/** @author Frank Schüler */
/**
* @author Frank Schüler
*/
public class WhileTransition extends TerminalElement<TWhile> {

private AbstractElement<?> begin;

/** @param */
/**
* @param
*/
public WhileTransition(AbstractElement<?> Begin) {
super(null);
this.begin = Begin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ public ManagerPortalService(URL wsdlLocation, QName serviceName, WebServiceFeatu
super(wsdlLocation, serviceName);
}

/** @return returns ManagerPortalPortType */
/**
* @return returns ManagerPortalPortType
*/
@WebEndpoint(name = "ManagerPortal")
public ManagerPortalPortType getManagerPortal() {
return super.getPort(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -630,42 +630,58 @@ public String getUserdir() {
return this.userdir;
}

/** @see org.woped.config.IGeneralConfiguration#getPortColor() */
/**
* @see org.woped.config.IGeneralConfiguration#getPortColor()
*/
public Color getPortColor() {
return portColor;
}

/** @see org.woped.config.IGeneralConfiguration#setPortColor(java.awt.Color) */
/**
* @see org.woped.config.IGeneralConfiguration#setPortColor(java.awt.Color)
*/
public void setPortColor(Color color) {
portColor = color;
}

/** @see org.woped.config.IGeneralConfiguration#getLocaleLanguage() */
/**
* @see org.woped.config.IGeneralConfiguration#getLocaleLanguage()
*/
public String getLocaleLanguage() {
return language;
}

/** @see org.woped.config.IGeneralConfiguration#setLocaleLanguage(java.lang.String) */
/**
* @see org.woped.config.IGeneralConfiguration#setLocaleLanguage(java.lang.String)
*/
public void setLocaleLanguage(String language) {
this.language = language;
}

/** @see org.woped.config.IGeneralConfiguration#getLocaleCountry() */
/**
* @see org.woped.config.IGeneralConfiguration#getLocaleCountry()
*/
public String getLocaleCountry() {
return country;
}

/** @see org.woped.config.IGeneralConfiguration#setLocaleCountry(java.lang.String) */
/**
* @see org.woped.config.IGeneralConfiguration#setLocaleCountry(java.lang.String)
*/
public void setLocaleCountry(String country) {
this.country = country;
}

/** @see org.woped.config.IGeneralConfiguration#getLocaleVariant() */
/**
* @see org.woped.config.IGeneralConfiguration#getLocaleVariant()
*/
public String getLocaleVariant() {
return variant;
}

/** @see org.woped.config.IGeneralConfiguration#setLocaleVariant(java.lang.String) */
/**
* @see org.woped.config.IGeneralConfiguration#setLocaleVariant(java.lang.String)
*/
public void setLocaleVariant(String variant) {
this.variant = variant;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
import org.woped.core.utilities.LoggerManager;
import org.woped.core.utilities.Platform;

/** @author <a href="mailto:[email protected]">Simon Landes </a> <br> */
/**
* @author <a href="mailto:[email protected]">Simon Landes </a> <br>
*/
public abstract class AbstractApplicationMediator implements IViewListener {
private HashMap<String, IViewController> viewControllerMap = null;
private VEPController vepController = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public AbstractEventProcessor(AbstractApplicationMediator mediator) {
this.mediator = mediator;
}

/** @return */
/**
* @return
*/
public AbstractApplicationMediator getMediator() {
return mediator;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,14 +314,18 @@ public Vector<Object> getAllCellsForLocation(double x, double y) {
return allCells;
}

/** @see org.jgraph.jgraph.startEditingAtCell */
/**
* @see org.jgraph.jgraph.startEditingAtCell
*/
@Override
public void startEditingAtCell(Object cell) {
super.startEditingAtCell(cell);
lastEdited = cell;
}

/** @return the last edited cell of the graph */
/**
* @return the last edited cell of the graph
*/
public NameModel getLastEdited() {
if (lastEdited != null) {
if (lastEdited.getClass() == NameModel.class) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
import org.woped.core.Constants;
import org.woped.core.utilities.LoggerManager;

/** @author Thomas Pohl TODO: DOCUMENTATION (xraven) */
/**
* @author Thomas Pohl TODO: DOCUMENTATION (xraven)
*/
/**
* @author <a href="mailto:[email protected]">Simon Landes </a> <br>
* <br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
*/
package org.woped.core.controller;

/** @author <a href="mailto:[email protected]">Simon Landes </a> <br> */
/**
* @author <a href="mailto:[email protected]">Simon Landes </a> <br>
*/
@SuppressWarnings("serial")
public class ViewEvent extends AbstractViewEvent {
public static final int VIEWEVENTTYPE_GUI = 3;
Expand Down
4 changes: 3 additions & 1 deletion WoPeD-Core/src/main/java/org/woped/core/model/ArcModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ public void setPoints(Point2D[] points) {
}
}

/** @param l */
/**
* @param l
*/
public void removePoint(Point2D l) {
int pos = getPointPosition(l, 10);
AttributeMap map = getAttributes();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,17 +577,23 @@ public int compare(PlaceModel o1, PlaceModel o2) {

/* Bpel extension */

/** @return */
/**
* @return
*/
public BpelVariableList getVariableList() {
return this.variablesList;
}

/** @return */
/**
* @return
*/
public PartnerlinkList getPartnerlinkList() {
return this.partnerLinkList;
}

/** @return */
/**
* @return
*/
public TPartnerLinks getTPartnerLinkList() {
return this.partnerLinkList.getBpelCode();
}
Expand Down Expand Up @@ -699,7 +705,9 @@ public boolean existPLName(String newname) {
return false;
}

/** @param arg */
/**
* @param arg
*/
public void addVariable(TVariable arg) {
this.variablesList.addVariable(arg);
}
Expand Down Expand Up @@ -729,22 +737,30 @@ public BpelVariable findBpelVariableByName(String Name) {
return this.variablesList.findBpelVaraibleByName(Name);
}

/** @return */
/**
* @return
*/
public String[] getBpelVariableNameList() {
return this.variablesList.getVariableNameArray();
}

/** @return */
/**
* @return
*/
public HashSet<BpelVariable> getBpelVariableList() {
return this.variablesList.getBpelVariableList();
}

/** @Param: Name, URL */
/**
* @Param: Name, URL
*/
public void addUddiVariable(String name, String url) {
this.uddiVariableList.addVariable(name, url);
}

/** @return */
/**
* @return
*/
public String[] getUddiVariableNameList() {
return this.uddiVariableList.getVariableNameArray();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,17 +429,23 @@ public Vector<String> getResourceClassesResourceIsAssignedTo(String resourceId)
return assignedVector;
}

/** @return */
/**
* @return
*/
public Dimension getNetWindowSize() {
return netWindowSize;
}

/** @param dimension */
/**
* @param dimension
*/
public void setNetWindowSize(Dimension dimension) {
netWindowSize = dimension;
}

/** @return */
/**
* @return
*/
public String getType() {
return type;
}
Expand Down Expand Up @@ -565,20 +571,26 @@ public void addUnknownToolSpecs(Object unknownToolSpecs) {
getUnknownToolSpecs().add(unknownToolSpecs);
}

/** @return Returns the organizationUnits. */
/**
* @return Returns the organizationUnits.
*/
public Vector<ResourceClassModel> getOrganizationUnits() {
if (organizationUnits == null) {
organizationUnits = new Vector<ResourceClassModel>();
}
return organizationUnits;
}

/** @param organizationUnits The organizationUnits to set. */
/**
* @param organizationUnits The organizationUnits to set.
*/
public void setOrganizationUnits(Vector<ResourceClassModel> organizationUnits) {
this.organizationUnits = organizationUnits;
}

/** @return Returns the resourceMap. */
/**
* @return Returns the resourceMap.
*/
public HashMap<String, Vector<String>> getResourceMapping() {
if (resourceMapping == null) {
resourceMapping = new HashMap<String, Vector<String>>();
Expand All @@ -590,20 +602,26 @@ public void setResourceMapping(HashMap<String, Vector<String>> resourceMapping)
this.resourceMapping = resourceMapping;
}

/** @return Returns the roles. */
/**
* @return Returns the roles.
*/
public Vector<ResourceClassModel> getRoles() {
if (roles == null) {
roles = new Vector<ResourceClassModel>();
}
return roles;
}

/** @param roles The roles to set. */
/**
* @param roles The roles to set.
*/
public void setRoles(Vector<ResourceClassModel> roles) {
this.roles = roles;
}

/** @return Returns the resources. */
/**
* @return Returns the resources.
*/
public Vector<ResourceModel> getResources() {
if (resources == null) {
resources = new Vector<ResourceModel>();
Expand All @@ -615,7 +633,9 @@ public void setResources(Vector<ResourceModel> resources) {
this.resources = resources;
}

/** @return Returns the simulations. */
/**
* @return Returns the simulations.
*/
public Vector<SimulationModel> getSimulations() {
if (simulations == null) {
simulations = new Vector<SimulationModel>();
Expand Down
Loading

0 comments on commit 547f308

Please sign in to comment.