Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 519539a

Browse files
committed
Add Copyright comments
1 parent db16d9a commit 519539a

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

src/main/java/com/mathworks/ci/MatlabBuildWrapperContent.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
package com.mathworks.ci;
22

3+
/**
4+
* Copyright 2020 The MathWorks, Inc.
5+
*
6+
* Class to parse Stapler request for Use MATLAB Version build wrapper.
7+
*
8+
*/
9+
310
import org.kohsuke.stapler.DataBoundConstructor;
411

512
public class MatlabBuildWrapperContent {

src/main/java/com/mathworks/ci/MatlabInstallation.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
package com.mathworks.ci;
22

3+
/**
4+
* Copyright 2020 The MathWorks, Inc.
5+
*
6+
* Describable class for adding MATLAB installations in Jenkins Global Tool configuration.
7+
*
8+
*/
9+
310
import hudson.CopyOnWrite;
411
import hudson.EnvVars;
512
import hudson.Extension;

src/main/java/com/mathworks/ci/MatlabInstallationAxis.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
package com.mathworks.ci;
22

3+
/**
4+
* Copyright 2020 The MathWorks, Inc.
5+
*
6+
* Describable class for MATLAB Axis that provides a list of configured MATLAB installation for
7+
* generating matrix configurations.
8+
*
9+
*/
10+
311
import hudson.Extension;
412
import hudson.matrix.Axis;
513
import hudson.matrix.AxisDescriptor;

src/main/java/com/mathworks/ci/MatlabItemListener.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
package com.mathworks.ci;
22

3+
/**
4+
* Copyright 2020 The MathWorks, Inc.
5+
*
6+
* Item listener class to provide functionality to check UI element states for a
7+
* Multi-configuration project.
8+
*
9+
*/
10+
311
import hudson.Extension;
412
import hudson.matrix.MatrixConfiguration;
513
import hudson.matrix.MatrixProject;
@@ -13,7 +21,6 @@
1321
import java.util.List;
1422
import java.util.Map;
1523

16-
1724
@Extension
1825
public final class MatlabItemListener extends ItemListener {
1926
private static final Map<String, Boolean> prjCheckMATLABAxis = new HashMap<>();

0 commit comments

Comments
 (0)