< prev index next >

modules/base/src/test/java/test/javafx/collections/TransformationListTest.java

Print this page
rev 9769 : 8139848: SortedList should provide a way to map source index to view index


  68         public boolean addAll(String... es) {
  69             throw new UnsupportedOperationException("Not supported yet.");
  70         }
  71 
  72         @Override
  73         public boolean setAll(String... es) {
  74             throw new UnsupportedOperationException("Not supported yet.");
  75         }
  76 
  77         @Override
  78         public boolean setAll(Collection<? extends String> clctn) {
  79             throw new UnsupportedOperationException("Not supported yet.");
  80         }
  81 
  82         @Override
  83         public int getSourceIndex(int i) {
  84             throw new UnsupportedOperationException("Not supported yet.");
  85         }
  86 
  87         @Override





  88         public boolean removeAll(String... es) {
  89             throw new UnsupportedOperationException("Not supported yet.");
  90         }
  91 
  92         @Override
  93         public boolean retainAll(String... es) {
  94             throw new UnsupportedOperationException("Not supported yet.");
  95         }
  96 
  97         @Override
  98         public void remove(int i, int i1) {
  99             throw new UnsupportedOperationException("Not supported yet.");
 100         }
 101 
 102     }
 103 
 104     private TransformationList<String, String> list1, list2;
 105     private ObservableList<String> list3;
 106 
 107     @Before


  68         public boolean addAll(String... es) {
  69             throw new UnsupportedOperationException("Not supported yet.");
  70         }
  71 
  72         @Override
  73         public boolean setAll(String... es) {
  74             throw new UnsupportedOperationException("Not supported yet.");
  75         }
  76 
  77         @Override
  78         public boolean setAll(Collection<? extends String> clctn) {
  79             throw new UnsupportedOperationException("Not supported yet.");
  80         }
  81 
  82         @Override
  83         public int getSourceIndex(int i) {
  84             throw new UnsupportedOperationException("Not supported yet.");
  85         }
  86 
  87         @Override
  88         public int getViewIndex(int index) {
  89             throw new UnsupportedOperationException("Not supported yet.");
  90         }
  91 
  92         @Override
  93         public boolean removeAll(String... es) {
  94             throw new UnsupportedOperationException("Not supported yet.");
  95         }
  96 
  97         @Override
  98         public boolean retainAll(String... es) {
  99             throw new UnsupportedOperationException("Not supported yet.");
 100         }
 101 
 102         @Override
 103         public void remove(int i, int i1) {
 104             throw new UnsupportedOperationException("Not supported yet.");
 105         }
 106 
 107     }
 108 
 109     private TransformationList<String, String> list1, list2;
 110     private ObservableList<String> list3;
 111 
 112     @Before
< prev index next >