関数のパラメーターから T を取得して、Vector の型を定義するにはどうすればよいですか? 例:
public void addPlot(String plotName, int minX, int maxX,
int minY, int maxY, PlotStyle plotStyle, Class<? extends Number> type)
{
Vector<type.class> dataset = new Vector<type.class>();
}