blob: cd16ac1d13c085d90c58c2148819d8e916626ebf [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;
/**
* Defines event listener methods that pertain to rollup state. Developers
* register for such events by adding themselves to a rollup's list of "rollup
* state listeners" (see {@link Rollup#getRollupStateListeners()}).
*/
public interface RollupStateListener {
/**
* Rollup state listener adapter.
*/
public static class Adapter implements RollupStateListener {
@Override
public Vote previewExpandedChange(Rollup rollup) {
return Vote.APPROVE;
}
@Override
public void expandedChangeVetoed(Rollup rollup, Vote reason) {
// empty block
}
@Override
public void expandedChanged(Rollup rollup) {
// empty block
}
}
/**
* Called to preview a rollup expansion event.
*
* @param rollup The rollup that might change.
* @return The result of this listener voting on the expansion.
*/
public Vote previewExpandedChange(Rollup rollup);
/**
* Called when a rollup expansion event has been vetoed.
*
* @param rollup The rollup that didn't change.
* @param reason The reason the expansion was vetoed.
*/
public void expandedChangeVetoed(Rollup rollup, Vote reason);
/**
* Called when a rollup's expanded state changed.
*
* @param rollup The rollup that did change.
*/
public void expandedChanged(Rollup rollup);
}