com.jidesoft.plaf.SidePaneUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)JideSidePaneUI.java
*
* Copyright 2002 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.plaf;
import com.jidesoft.swing.SidePaneGroup;
import com.jidesoft.swing.SidePaneItem;
import javax.swing.plaf.PanelUI;
import java.awt.*;
/**
* ComponentUI for SidePane.
*/
public abstract class SidePaneUI extends PanelUI {
abstract public int getSelectedItemIndex(Point p);
abstract public SidePaneGroup getGroupForIndex(int index);
abstract public SidePaneItem getItemForIndex(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy