⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testchart.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
/* * Created on 20.05.2005 */package net.sourceforge.ganttproject.chart;import java.awt.Graphics;import java.awt.image.BufferedImage;import java.awt.image.RenderedImage;import java.util.Date;import java.util.Map;import javax.swing.Icon;import org.eclipse.core.runtime.IStatus;import net.sourceforge.ganttproject.GanttExportSettings;import net.sourceforge.ganttproject.IGanttProject;import net.sourceforge.ganttproject.gui.options.model.GPOptionGroup;import net.sourceforge.ganttproject.task.TaskLength;import net.sourceforge.ganttproject.task.TaskManager;import net.sourceforge.ganttproject.time.TimeUnit;public class TestChart implements Chart {    public BufferedImage getChart(GanttExportSettings settings) {        throw new UnsupportedOperationException();    }    public Date getStartDate() {        throw new UnsupportedOperationException();    }    public void setStartDate(Date projectStart) {        throw new UnsupportedOperationException();    }    public Date getEndDate() {        throw new UnsupportedOperationException();    }    public String getName() {        return "Test chart";    }    public void setTaskManager(TaskManager taskManager) {        // TODO Auto-generated method stub    }    public Object getAdapter(Class arg0) {        return null;    }    public void reset() {        // TODO Auto-generated method stub    }    public Icon getIcon() {        // TODO Auto-generated method stub        return null;    }    public GPOptionGroup[] getOptionGroups() {        return null;    }    public Chart createCopy() {        // TODO Auto-generated method stub        return null;    }	public RenderedImage getRenderedImage(GanttExportSettings settings) {		// TODO Auto-generated method stub		return null;	}	public ChartSelection getSelection() {		// TODO Auto-generated method stub		return null;	}	public IStatus canPaste(ChartSelection selection) {		// TODO Auto-generated method stub		return null;	}	public void paste(ChartSelection selection) {		// TODO Auto-generated method stub			}	public void addSelectionListener(ChartSelectionListener listener) {		// TODO Auto-generated method stub			}	public void removeSelectionListener(ChartSelectionListener listener) {		// TODO Auto-generated method stub			}    public IGanttProject getProject() {        // TODO Auto-generated method stub        return null;    }    public void setDimensions(int height, int width) {        // TODO Auto-generated method stub            }    public void paintChart(Graphics g) {        // TODO Auto-generated method stub            }    public void setBottomUnit(TimeUnit bottomUnit) {        // TODO Auto-generated method stub            }    public void setBottomUnitWidth(int width) {        // TODO Auto-generated method stub            }    public void setTopUnit(TimeUnit topUnit) {        // TODO Auto-generated method stub            }    public void addTimeUnitVisitor(TimeUnitVisitor visitor) {        // TODO Auto-generated method stub            }    public void resetRenderers() {        // TODO Auto-generated method stub            }    public TaskLength calculateLength(int posX) {        // TODO Auto-generated method stub        return null;    }    public void scrollLeft() {        // TODO Auto-generated method stub            }    public void scrollRight() {        // TODO Auto-generated method stub            }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -