All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.palexdev.virtualizedfx.properties.VFXTableStateProperty Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2024 Parisi Alessandro - [email protected]
 * 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.properties;

import io.github.palexdev.virtualizedfx.table.VFXTableState;
import javafx.beans.property.ReadOnlyObjectWrapper;

/**
 * Convenience property that extends {@link ReadOnlyObjectWrapper} for {@link VFXTableState}.
 */
public class VFXTableStateProperty extends ReadOnlyObjectWrapper> {

    //================================================================================
    // Constructors
    //================================================================================
    public VFXTableStateProperty() {}

    public VFXTableStateProperty(VFXTableState initialValue) {
        super(initialValue);
    }

    public VFXTableStateProperty(Object bean, String name) {
        super(bean, name);
    }

    public VFXTableStateProperty(Object bean, String name, VFXTableState initialValue) {
        super(bean, name, initialValue);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy