org.scijava.AbstractUIDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scijava-common Show documentation
Show all versions of scijava-common Show documentation
SciJava Common is a shared library for SciJava software. It provides a plugin framework, with an extensible mechanism for service discovery, backed by its own annotation processor, so that plugins can be loaded dynamically. It is used by downstream projects in the SciJava ecosystem, such as ImageJ and SCIFIO.
The newest version!
/*
* #%L
* SciJava Common shared library for SciJava software.
* %%
* Copyright (C) 2009 - 2024 SciJava developers.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package org.scijava;
import org.scijava.util.StringMaker;
/**
* Abstract superclass of {@link UIDetails} implementations.
*
* @author Curtis Rueden
*/
public abstract class AbstractUIDetails extends AbstractBasicDetails implements UIDetails {
/** Path to this object's suggested position in the menu structure. */
private MenuPath menuPath;
/** Name of the menu structure to which the object belongs. */
private String menuRoot = APPLICATION_MENU_ROOT;
/** Resource path to this object's icon. */
private String iconPath;
/** Sort priority of the object. */
private double priority = Priority.NORMAL;
/** Whether the object can be selected in the user interface. */
private boolean selectable;
/** The name of the selection group to which the object belongs. */
private String selectionGroup;
/** Whether the object is selected in the user interface. */
private boolean selected;
/** Whether the object is enabled in the user interface. */
private boolean enabled = true;
/** Whether the object is visible in the user interface. */
private boolean visible = true;
// -- Object methods --
@Override
public String toString() {
final StringMaker sm = new StringMaker();
sm.append(super.toString());
sm.append("menu", menuPath == null ? null : menuPath.getMenuString());
sm.append("iconPath", iconPath);
sm.append("priority", priority, Integer.MAX_VALUE);
if (selectable) {
sm.append("selectionGroup", selectionGroup);
sm.append("selected", selected);
}
sm.append("enabled", enabled);
return sm.toString();
}
// -- UIDetails methods --
@Override
public MenuPath getMenuPath() {
return menuPath;
}
@Override
public String getMenuRoot() {
return menuRoot;
}
@Override
public String getIconPath() {
return iconPath;
}
@Override
public boolean isEnabled() {
return enabled;
}
@Override
public boolean isVisible() {
return visible;
}
@Override
public boolean isSelectable() {
return selectable;
}
@Override
public String getSelectionGroup() {
return selectionGroup;
}
@Override
public boolean isSelected() {
return selected;
}
@Override
public void setMenuPath(final MenuPath menuPath) {
if (menuPath == null) {
this.menuPath = new MenuPath();
}
else {
this.menuPath = menuPath;
}
}
@Override
public void setMenuRoot(final String menuRoot) {
this.menuRoot = menuRoot;
}
@Override
public void setIconPath(final String iconPath) {
this.iconPath = iconPath;
}
@Override
public void setEnabled(final boolean enabled) {
this.enabled = enabled;
}
@Override
public void setVisible(final boolean visible) {
this.visible = visible;
}
@Override
public void setSelectable(final boolean selectable) {
this.selectable = selectable;
}
@Override
public void setSelectionGroup(final String selectionGroup) {
this.selectionGroup = selectionGroup;
}
@Override
public void setSelected(final boolean selected) {
this.selected = selected;
}
// -- Prioritized methods --
@Override
public double getPriority() {
return priority;
}
@Override
public void setPriority(final double priority) {
this.priority = priority;
}
}