
xdev.ui.ganttchart.template.GanttTemplate Maven / Gradle / Ivy
package xdev.ui.ganttchart.template;
/*-
* #%L
* XDEV BI Suite
* %%
* Copyright (C) 2011 - 2021 XDEV Software
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import xdev.ui.ganttchart.UpdateableGanttEntry;
import xdev.ui.ganttchart.model.GanttPersistence;
import com.jidesoft.gantt.GanttChart;
import com.jidesoft.gantt.GanttChartPane;
import com.jidesoft.gantt.GanttEntry;
import com.jidesoft.grid.TreeTable;
import com.jidesoft.scale.ScaleModel;
/**
* {@link GanttTemplate} provides a summarized and simplified way to use a
* {@link GanttChart} implicated with persistence.
*
*
* Including convertible:
*
* - {@link GanttChartTemplateTablePopup}
* - {@link ComponentSplitHandler}
* - {@link GanttEntryEditor}/creator
*
*
*
* @param
* the customized {@link GanttEntry} type.
*
* @param
* the gantt data type, for example Date
or
* Integer
. Has to extend {@link Comparable} for
* validation purpose.
*
* Used for entry scaling via {@link GanttEntry#getRange()}
*
*
* @author XDEV Software jwill
* @since 4.0
*/
public interface GanttTemplate>
{
public void setGanttPersistence(GanttPersistence persistence);
public GanttPersistence getGanttPersistence();
public boolean isPersistenceEnabled();
public ScaleModel getScaleModel();
/**
* Returns the {@link GanttChartPane} which is used to display a
* {@link TreeTable} and a {@link GanttChart} as UI representation of the
* project data.
*
* @return the GanttChartPane
*/
public GanttChartPane getGanttChartPane();
public void setGanttChartPane(GanttChartPane ganttChartPane);
public GanttChart getGanttChart();
/**
* Property constant for "editable".
*/
public final static String EDITABLE_PROPERTY = "editable";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy