Skip to content

Commit

Permalink
add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Goksi committed Apr 4, 2024
1 parent 844ffdc commit 035d96b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ public interface ApplicationEgg extends Egg, ISnowflake {
*/
String getDockerImage();

/**
* The list of all Docker images associated with ApplicationEgg
*
* @return {@link java.util.List List} of {@link DockerImage DockerImage}
*/
List<DockerImage> getDockerImages();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@

package com.mattmalec.pterodactyl4j.application.entities;

/**
* Represents a Pterodactyl {@link com.mattmalec.pterodactyl4j.application.entities.DockerImage DockerImage}.
*
* <br> This should contain all information provided from the {@link ApplicationEgg ApplicationEgg} instance about
* available Docker images.
*
* @see ApplicationEgg#getDockerImages()
*/
public interface DockerImage {
String getName();

Expand Down

0 comments on commit 035d96b

Please sign in to comment.