1 19 20 package taskblocks.graph; 21 22 import java.awt.Rectangle ; 23 24 27 class TaskRow extends GraphObject { 28 29 Object _userManObject; 30 public Task[] _tasks; 31 32 33 int _index; 34 35 36 int _topPosition; 37 38 39 int _topPadding; 40 41 int _bottomPadding; 42 43 String _name; 44 45 Rectangle _bounds = new Rectangle (); 46 47 public TaskRow(Object manObj) { 48 _userManObject = manObj; 49 } 50 } 51 | Popular Tags |