本文整理匯總了Java中javafx.scene.control.ListCell.setItem方法的典型用法代碼示例。如果您正苦於以下問題:Java ListCell.setItem方法的具體用法?Java ListCell.setItem怎麽用?Java ListCell.setItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javafx.scene.control.ListCell
的用法示例。
在下文中一共展示了ListCell.setItem方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: shouldTriggerDragEntered
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldTriggerDragEntered() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(1, "Playlist", 10));
listCell.setStyle(null);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(true);
DragEvent spyDragEvent = spy(getDragEvent(DragEvent.DRAG_OVER, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragEnteredProperty().get().handle(spyDragEvent);
assertThat("List cell style should not be empty", listCell.getStyle(), not(isEmptyString()));
verify(spyDragEvent, times(1)).consume();
}
示例2: shouldNotTriggerDragEnterdWithSameSource
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldNotTriggerDragEnterdWithSameSource() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(1, "Playlist", 10));
listCell.setStyle(null);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(true);
DragEvent spyDragEvent = spy(getDragEvent(DragEvent.DRAG_OVER, mockDragboard, TransferMode.COPY, listCell));
listCell.onDragEnteredProperty().get().handle(spyDragEvent);
assertThat("List cell style should be empty", listCell.getStyle(), isEmptyString());
verify(spyDragEvent, times(1)).consume();
}
示例3: shouldNotTriggerDragEnteredWithNoContent
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldNotTriggerDragEnteredWithNoContent() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(1, "Playlist", 10));
listCell.setStyle(null);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(false);
DragEvent spyDragEvent = spy(getDragEvent(DragEvent.DRAG_OVER, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragEnteredProperty().get().handle(spyDragEvent);
assertThat("List cell style should be empty", listCell.getStyle(), isEmptyString());
verify(spyDragEvent, times(1)).consume();
}
示例4: shouldNotTriggerDragEnteredWithNoPlaylist
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldNotTriggerDragEnteredWithNoPlaylist() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(null);
listCell.setStyle(null);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(true);
DragEvent spyDragEvent = spy(getDragEvent(DragEvent.DRAG_OVER, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragEnteredProperty().get().handle(spyDragEvent);
assertThat("List cell style should be empty", listCell.getStyle(), isEmptyString());
verify(spyDragEvent, times(1)).consume();
}
示例5: shouldNotTriggerDragEnteredWithReservedPlaylist
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldNotTriggerDragEnteredWithReservedPlaylist() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(PLAYLIST_ID_FAVOURITES, "Favourites", 10));
listCell.setStyle(null);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(true);
DragEvent spyDragEvent = spy(getDragEvent(DragEvent.DRAG_OVER, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragEnteredProperty().get().handle(spyDragEvent);
assertThat("List cell style should be empty", listCell.getStyle(), isEmptyString());
verify(spyDragEvent, times(1)).consume();
}
示例6: shouldTriggerDragDropped
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldTriggerDragDropped() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(1, "Playlist", 10));
Track mockTrack = mock(Track.class);
when(mockTrack.clone()).thenReturn(mockTrack);
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(true);
when(mockDragboard.getContent(DND_TRACK_DATA_FORMAT)).thenReturn(mockTrack);
DragEvent spyDragEvent = spy(
getDragEvent(DragEvent.DRAG_DROPPED, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragDroppedProperty().get().handle(spyDragEvent);
verify(mockPlaylistManager, times(1)).addTrackToPlaylist(1, mockTrack);
verify(spyDragEvent, times(1)).setDropCompleted(true);
verify(spyDragEvent, times(1)).consume();
}
示例7: shouldNotTriggerDragDroppedWithNoContent
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldNotTriggerDragDroppedWithNoContent() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(new Playlist(1, "Playlist", 10));
Dragboard mockDragboard = mock(Dragboard.class);
when(mockDragboard.hasContent(DND_TRACK_DATA_FORMAT)).thenReturn(false);
DragEvent spyDragEvent = spy(
getDragEvent(DragEvent.DRAG_DROPPED, mockDragboard, TransferMode.COPY, new Object()));
listCell.onDragDroppedProperty().get().handle(spyDragEvent);
verify(mockPlaylistManager, never()).addTrackToPlaylist(anyInt(), any());
verify(spyDragEvent, never()).setDropCompleted(true);
verify(spyDragEvent, times(1)).consume();
}
示例8: shouldSinglePrimaryClickOnCell
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldSinglePrimaryClickOnCell() {
Playlist playlist = new Playlist(1, "Playlist", 10);
playlist.setPlaylistId(999);
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(playlist);
listCell.onMouseClickedProperty().get().handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.PRIMARY, 1));
verify(getMockEventManager(), times(1)).fireEvent(Event.PLAYLIST_SELECTED, playlist.getPlaylistId());
}
示例9: shouldDoublePrimaryClickOnCell
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldDoublePrimaryClickOnCell() {
Playlist playlist = new Playlist(1, "Playlist", 10);
playlist.setPlaylistId(999);
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(playlist);
listCell.onMouseClickedProperty().get().handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.PRIMARY, 2));
verify(getMockEventManager(), never()).fireEvent(Event.PLAYLIST_SELECTED, playlist.getPlaylistId());
}
示例10: shouldSingleSecondaryClickOnCell
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldSingleSecondaryClickOnCell() {
Playlist playlist = new Playlist(1, "Playlist", 10);
playlist.setPlaylistId(999);
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(playlist);
listCell.onMouseClickedProperty().get()
.handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.SECONDARY, 1));
verify(getMockEventManager(), times(1)).fireEvent(Event.PLAYLIST_SELECTED, playlist.getPlaylistId());
}
示例11: shouldDoubleSecondaryClickOnCell
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldDoubleSecondaryClickOnCell() {
Playlist playlist = new Playlist(1, "Playlist", 10);
playlist.setPlaylistId(999);
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(playlist);
listCell.onMouseClickedProperty().get()
.handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.SECONDARY, 2));
verify(getMockEventManager(), never()).fireEvent(Event.PLAYLIST_SELECTED, playlist.getPlaylistId());
}
示例12: shouldSinglePrimaryClickOnCellItemIsNull
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldSinglePrimaryClickOnCellItemIsNull() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(null);
listCell.onMouseClickedProperty().get().handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.PRIMARY, 1));
verify(getMockEventManager(), never()).fireEvent(any());
}
示例13: shouldSingleSecondaryClickOnCellItemIsNull
import javafx.scene.control.ListCell; //導入方法依賴的package包/類
@Test
public void shouldSingleSecondaryClickOnCellItemIsNull() {
ListCell<Playlist> listCell = cellFactory.call(getListView());
listCell.setItem(null);
listCell.onMouseClickedProperty().get()
.handle(getMouseEvent(MouseEvent.MOUSE_CLICKED, MouseButton.SECONDARY, 1));
verify(getMockEventManager(), never()).fireEvent(any());
}