本文整理汇总了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());
}