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

griffon.pivot.support.adapters.ListViewAdapter Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
/*
 * Copyright 2008-2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package griffon.pivot.support.adapters;

import griffon.core.CallableWithArgs;

/**
 * @author Andres Almiray
 * @since 2.0.0
 */
public class ListViewAdapter implements GriffonPivotAdapter, org.apache.pivot.wtk.ListViewListener {
    private CallableWithArgs listDataChanged;
    private CallableWithArgs itemRendererChanged;
    private CallableWithArgs disabledItemFilterChanged;
    private CallableWithArgs itemEditorChanged;
    private CallableWithArgs selectModeChanged;
    private CallableWithArgs checkmarksEnabledChanged;
    private CallableWithArgs disabledCheckmarkFilterChanged;

    public CallableWithArgs getListDataChanged() {
        return this.listDataChanged;
    }

    public CallableWithArgs getItemRendererChanged() {
        return this.itemRendererChanged;
    }

    public CallableWithArgs getDisabledItemFilterChanged() {
        return this.disabledItemFilterChanged;
    }

    public CallableWithArgs getItemEditorChanged() {
        return this.itemEditorChanged;
    }

    public CallableWithArgs getSelectModeChanged() {
        return this.selectModeChanged;
    }

    public CallableWithArgs getCheckmarksEnabledChanged() {
        return this.checkmarksEnabledChanged;
    }

    public CallableWithArgs getDisabledCheckmarkFilterChanged() {
        return this.disabledCheckmarkFilterChanged;
    }


    public void setListDataChanged(CallableWithArgs listDataChanged) {
        this.listDataChanged = listDataChanged;
    }

    public void setItemRendererChanged(CallableWithArgs itemRendererChanged) {
        this.itemRendererChanged = itemRendererChanged;
    }

    public void setDisabledItemFilterChanged(CallableWithArgs disabledItemFilterChanged) {
        this.disabledItemFilterChanged = disabledItemFilterChanged;
    }

    public void setItemEditorChanged(CallableWithArgs itemEditorChanged) {
        this.itemEditorChanged = itemEditorChanged;
    }

    public void setSelectModeChanged(CallableWithArgs selectModeChanged) {
        this.selectModeChanged = selectModeChanged;
    }

    public void setCheckmarksEnabledChanged(CallableWithArgs checkmarksEnabledChanged) {
        this.checkmarksEnabledChanged = checkmarksEnabledChanged;
    }

    public void setDisabledCheckmarkFilterChanged(CallableWithArgs disabledCheckmarkFilterChanged) {
        this.disabledCheckmarkFilterChanged = disabledCheckmarkFilterChanged;
    }


    public void listDataChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.collections.List arg1) {
        if (listDataChanged != null) {
            listDataChanged.call(arg0, arg1);
        }
    }

    public void itemRendererChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.wtk.ListView.ItemRenderer arg1) {
        if (itemRendererChanged != null) {
            itemRendererChanged.call(arg0, arg1);
        }
    }

    public void disabledItemFilterChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.util.Filter arg1) {
        if (disabledItemFilterChanged != null) {
            disabledItemFilterChanged.call(arg0, arg1);
        }
    }

    public void itemEditorChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.wtk.ListView.ItemEditor arg1) {
        if (itemEditorChanged != null) {
            itemEditorChanged.call(arg0, arg1);
        }
    }

    public void selectModeChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.wtk.ListView.SelectMode arg1) {
        if (selectModeChanged != null) {
            selectModeChanged.call(arg0, arg1);
        }
    }

    public void checkmarksEnabledChanged(org.apache.pivot.wtk.ListView arg0) {
        if (checkmarksEnabledChanged != null) {
            checkmarksEnabledChanged.call(arg0);
        }
    }

    public void disabledCheckmarkFilterChanged(org.apache.pivot.wtk.ListView arg0, org.apache.pivot.util.Filter arg1) {
        if (disabledCheckmarkFilterChanged != null) {
            disabledCheckmarkFilterChanged.call(arg0, arg1);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy