Uses of Interface
org.gephi.layout.spi.Layout
-
Packages that use Layout Package Description org.gephi.layout.api API for real-time layout algorithm tasks and proper user control.org.gephi.layout.spi Interfaces for creating new layout algorithms. -
-
Uses of Layout in org.gephi.layout.api
Methods in org.gephi.layout.api that return Layout Modifier and Type Method Description Layout
LayoutModel. getLayout(LayoutBuilder layoutBuilder)
Return a layout instance for the givenlayoutBuilder
.Layout
LayoutModel. getSelectedLayout()
Returns the currently selected layout ornull
if no layout is selected.Methods in org.gephi.layout.api with parameters of type Layout Modifier and Type Method Description void
LayoutController. setLayout(Layout layout)
Sets the Layout to execute. -
Uses of Layout in org.gephi.layout.spi
Methods in org.gephi.layout.spi that return Layout Modifier and Type Method Description Layout
LayoutBuilder. buildLayout()
Builds an instance of the Layout.Methods in org.gephi.layout.spi with parameters of type Layout Modifier and Type Method Description static LayoutProperty
LayoutProperty. createProperty(Layout layout, Class valueType, String propertyName, String propertyCategory, String propertyDescription, String getMethod, String setMethod)
Create a property.static LayoutProperty
LayoutProperty. createProperty(Layout layout, Class valueType, String propertyName, String propertyCategory, String propertyDescription, String getMethod, String setMethod, Class<? extends PropertyEditor> editorClass)
Create a property, with a particularPropertyEditor
.static LayoutProperty
LayoutProperty. createProperty(Layout layout, Class valueType, String propertyName, String propertyCategory, String propertyCanonicalName, String propertyDescription, String getMethod, String setMethod)
Create a property.static LayoutProperty
LayoutProperty. createProperty(Layout layout, Class valueType, String propertyName, String propertyCategory, String propertyCanonicalName, String propertyDescription, String getMethod, String setMethod, Class<? extends PropertyEditor> editorClass)
Create a property, with a particularPropertyEditor
.JPanel
LayoutUI. getSimplePanel(Layout layout)
ALayoutUI
can have a optional settings panel, that will be displayed instead of the property sheet.
-