Uses of Interface
org.gephi.preview.api.Item
-
Packages that use Item Package Description org.gephi.preview.api API for Preview rendering.org.gephi.preview.spi Interfaces for creating new renderers, item builders and render targets. -
-
Uses of Item in org.gephi.preview.api
Methods in org.gephi.preview.api that return Item Modifier and Type Method Description Item
PreviewModel. getItem(String type, Object source)
Returns the item attached tosource
and with the typetype
.Item[]
PreviewModel. getItems(Object source)
Returns all items attached tosource
.Item[]
PreviewModel. getItems(String type)
Returns all items withtype
as type. -
Uses of Item in org.gephi.preview.spi
Methods in org.gephi.preview.spi that return Item Modifier and Type Method Description Item[]
ItemBuilder. getItems(Graph graph)
Build items from thegraph
.Methods in org.gephi.preview.spi with parameters of type Item Modifier and Type Method Description CanvasSize
Renderer. getCanvasSize(Item item, PreviewProperties properties)
Compute the canvas size of the item to render.boolean
Renderer. isRendererForitem(Item item, PreviewProperties properties)
Based onproperties
, determine whether this renderer is valid to renderItem
.void
Renderer. render(Item item, RenderTarget target, PreviewProperties properties)
Renderitem
totarget
using the global properties and item data.
-