1 15 16 package swingwtx.swing.tree; 17 18 import java.beans.PropertyChangeListener ; 19 import swingwtx.swing.event.*; 20 21 25 public class DefaultTreeSelectionModel implements TreeSelectionModel { 26 27 public DefaultTreeSelectionModel() { 28 } 29 30 public void addPropertyChangeListener(PropertyChangeListener listener) { 31 } 32 33 public void addSelectionPath(TreePath path) { 34 } 35 36 public void addSelectionPaths(TreePath[] paths) { 37 } 38 39 public void addTreeSelectionListener(TreeSelectionListener x) { 40 } 41 42 public void clearSelection() { 43 } 44 45 public TreePath getLeadSelectionPath() { 46 return null; 47 } 48 49 public int getLeadSelectionRow() { 50 return 0; 51 } 52 53 public int getMaxSelectionRow() { 54 return 0; 55 } 56 57 public int getMinSelectionRow() { 58 return 0; 59 } 60 61 public RowMapper getRowMapper() { 62 return null; 63 } 64 65 public int getSelectionCount() { 66 return 0; 67 } 68 69 public int getSelectionMode() { 70 return 0; 71 } 72 73 public TreePath getSelectionPath() { 74 return null; 75 } 76 77 public TreePath[] getSelectionPaths() { 78 return null; 79 } 80 81 public int[] getSelectionRows() { 82 return null; 83 } 84 85 public boolean isPathSelected(TreePath path) { 86 return false; 87 } 88 89 public boolean isRowSelected(int row) { 90 return false; 91 } 92 93 public boolean isSelectionEmpty() { 94 return false; 95 } 96 97 public void removePropertyChangeListener(PropertyChangeListener listener) { 98 } 99 100 public void removeSelectionPath(TreePath path) { 101 } 102 103 public void removeSelectionPaths(TreePath[] paths) { 104 } 105 106 public void removeTreeSelectionListener(TreeSelectionListener x) { 107 } 108 109 public void resetRowSelection() { 110 } 111 112 public void setRowMapper(RowMapper newMapper) { 113 } 114 115 public void setSelectionMode(int mode) { 116 } 117 118 public void setSelectionPath(TreePath path) { 119 } 120 121 public void setSelectionPaths(TreePath[] paths) { 122 } 123 124 } 125 | Popular Tags |