blob: 463d59de7678c38fcdec4f1e0e822a8b23cee142 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you 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 org.apache.pivot.wtk;
import org.apache.pivot.util.Vote;
/**
* Accordion selection listener interface.
*/
public interface AccordionSelectionListener {
/**
* Accordion selection listener adapter.
*/
public static class Adapter implements AccordionSelectionListener {
@Override
public Vote previewSelectedIndexChange(Accordion accordion, int selectedIndex) {
return Vote.APPROVE;
}
@Override
public void selectedIndexChangeVetoed(Accordion accordion, Vote reason) {
// empty block
}
@Override
public void selectedIndexChanged(Accordion accordion, int previousSelectedIndex) {
// empty block
}
}
/**
* Called to preview a selected index change.
*
* @param accordion The source of the event.
* @param selectedIndex The index that will be selected.
* @return The consensus vote as to whether to allow the selected index change.
*/
public Vote previewSelectedIndexChange(Accordion accordion, int selectedIndex);
/**
* Called when a selected index change has been vetoed.
*
* @param accordion The source of the event.
* @param reason The reason the event was vetoed.
*/
public void selectedIndexChangeVetoed(Accordion accordion, Vote reason);
/**
* Called when an accordion's selected index has changed.
*
* @param accordion The source of the event.
* @param previousSelectedIndex If the selection changed directly, contains
* the index that was previously selected. Otherwise, contains the current
* selection.
*/
public void selectedIndexChanged(Accordion accordion, int previousSelectedIndex);
}