com.github.easypack.platform.PlatformBehavioural Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypack-maven-plugin Show documentation
Show all versions of easypack-maven-plugin Show documentation
Maven plugin for building Java applications in tar, zip and tar.gz format.
The newest version!
package com.github.easypack.platform;
/**
* Protocol for behaving based on a {@link Platform}.
*
* @author agusmunioz
*
* @param
* type of the behavior result.
*/
public interface PlatformBehavioural {
/**
* Behavior for a Linux platform.
*
* @return the behavior result.
*/
T linux();
/**
* Behavior for Windows platform.
*
* @return the behavior result.
*/
T windows();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy