Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
2dc8048d
Commit
2dc8048d
authored
Jun 02, 2020
by
Madhura Bhave
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing since tags
Closes gh-21576
parent
2589f980
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
ExecutableArchiveLauncher.java
...pringframework/boot/loader/ExecutableArchiveLauncher.java
+3
-0
Launcher.java
...c/main/java/org/springframework/boot/loader/Launcher.java
+1
-0
Archive.java
...java/org/springframework/boot/loader/archive/Archive.java
+1
-0
No files found.
spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java
View file @
2dc8048d
...
@@ -130,6 +130,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
...
@@ -130,6 +130,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
* Determine if the specified entry is a candidate for further searching.
* Determine if the specified entry is a candidate for further searching.
* @param entry the entry to check
* @param entry the entry to check
* @return {@code true} if the entry is a candidate for further searching
* @return {@code true} if the entry is a candidate for further searching
* @since 2.3.0
*/
*/
protected
boolean
isSearchCandidate
(
Archive
.
Entry
entry
)
{
protected
boolean
isSearchCandidate
(
Archive
.
Entry
entry
)
{
return
true
;
return
true
;
...
@@ -149,6 +150,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
...
@@ -149,6 +150,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
* {@link #postProcessClassPathArchives(List)} should provide an implementation that
* {@link #postProcessClassPathArchives(List)} should provide an implementation that
* returns {@code false}.
* returns {@code false}.
* @return if the {@link #postProcessClassPathArchives(List)} method is implemented
* @return if the {@link #postProcessClassPathArchives(List)} method is implemented
* @since 2.3.0
*/
*/
protected
boolean
isPostProcessingClassPathArchives
()
{
protected
boolean
isPostProcessingClassPathArchives
()
{
return
true
;
return
true
;
...
@@ -172,6 +174,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
...
@@ -172,6 +174,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
/**
/**
* Return the root archive.
* Return the root archive.
* @return the root archive
* @return the root archive
* @since 2.3.0
*/
*/
protected
final
Archive
getArchive
()
{
protected
final
Archive
getArchive
()
{
return
this
.
archive
;
return
this
.
archive
;
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/Launcher.java
View file @
2dc8048d
...
@@ -169,6 +169,7 @@ public abstract class Launcher {
...
@@ -169,6 +169,7 @@ public abstract class Launcher {
* {@code true} then only regular JARs are supported and the additional URL and
* {@code true} then only regular JARs are supported and the additional URL and
* ClassLoader support infrastructure can be optimized.
* ClassLoader support infrastructure can be optimized.
* @return if the jar is exploded.
* @return if the jar is exploded.
* @since 2.3.0
*/
*/
protected
boolean
isExploded
()
{
protected
boolean
isExploded
()
{
return
true
;
return
true
;
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/Archive.java
View file @
2dc8048d
...
@@ -93,6 +93,7 @@ public interface Archive extends Iterable<Archive.Entry>, AutoCloseable {
...
@@ -93,6 +93,7 @@ public interface Archive extends Iterable<Archive.Entry>, AutoCloseable {
/**
/**
* Return if the archive is exploded (already unpacked).
* Return if the archive is exploded (already unpacked).
* @return if the archive is exploded
* @return if the archive is exploded
* @since 2.3.0
*/
*/
default
boolean
isExploded
()
{
default
boolean
isExploded
()
{
return
false
;
return
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment