![JAR search and dependency download from the Maven repository](/logo.png)
io.github.palexdev.virtualizedfx.controls.behavior.base.DisposableAction Maven / Gradle / Ivy
/*
* Copyright (C) 2022 Parisi Alessandro
* This file is part of VirtualizedFX (https://github.com/palexdev/VirtualizedFX).
*
* VirtualizedFX is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VirtualizedFX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with VirtualizedFX. If not, see .
*/
package io.github.palexdev.virtualizedfx.controls.behavior.base;
/**
* Public API for every action that should be disposed once it's not needed anymore
*/
public interface DisposableAction {
/**
* Disposes this action.
*/
void dispose();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy