1 /*-------------------------------------------------------------------------- 2 * Copyright 2009 utgenome.org 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 *--------------------------------------------------------------------------*/ 16 //-------------------------------------- 17 // utgb-core Project 18 // 19 // WIGGraphCanvasTrack.java 20 // Since: Dec. 8, 2009 21 // 22 // $URL$ 23 // $Author$ 24 //-------------------------------------- 25 package org.utgenome.gwt.utgb.client.track.lib; 26 27 import org.utgenome.gwt.utgb.client.track.Track; 28 29 /** 30 * WIG Track for displaying graph data, including bar chart, heat map, etc. Note: the implementation of 31 * WIGGraphCanvasTrack was moved to {@link WIGTrack}. This track is preserved for the backward compatibility. 32 * 33 * 34 * @author yoshimura 35 * @author leo 36 * 37 */ 38 public class WIGGraphCanvasTrack extends WIGTrack { 39 40 public static TrackFactory factory() { 41 return new TrackFactory() { 42 @Override 43 public Track newInstance() { 44 return new WIGGraphCanvasTrack(); 45 } 46 }; 47 } 48 49 public WIGGraphCanvasTrack() { 50 super(); 51 } 52 53 }