GraphLab Project

Uses of Interface
graphlab.platform.attribute.NotifiableAttributeSet

Packages that use NotifiableAttributeSet
graphlab.graph.atributeset   
graphlab.platform.attribute   
graphlab.plugins.main.core.actions   
graphlab.ui   
graphlab.ui.components.gpropertyeditor   
graphlab.ui.components.gpropertyeditor.utils   
graphlab.ui.components.utils   
 

Uses of NotifiableAttributeSet in graphlab.graph.atributeset
 

Classes in graphlab.graph.atributeset that implement NotifiableAttributeSet
 class EdgeNotifiableAttrSet
          changes on EdgeModel will take effect on next 100 milisecond, using this class should be done with care, this class uses a thread and checks the edge on each 100ms for any changes, so creating a lot of instances of this class (for example for all edges of graph) will take more and more cpu,

try to create as few as possible instances of this class and call stop() when you don't need it any more!

 class GraphNotifiableAttrSet
           
 class VertexNotifiableAttrSet
           
 

Uses of NotifiableAttributeSet in graphlab.platform.attribute
 

Classes in graphlab.platform.attribute that implement NotifiableAttributeSet
 class NotifiableAttributeSetImpl
          Default implementation for the NotifiableAttributeSet
 class TimeLimitedNotifiableAttrSet<T extends AttributeSet>
          A handy NotifiableSet which acts on any AttributeSet and converts it to a NotifiableAttributeSet, This is done by checking the AttributeSet for changes in each (100) mili seconds.
 

Uses of NotifiableAttributeSet in graphlab.plugins.main.core.actions
 

Fields in graphlab.plugins.main.core.actions declared as NotifiableAttributeSet
 NotifiableAttributeSet GraphPropertyEditor.NotifiableAttributeSet
           
 

Uses of NotifiableAttributeSet in graphlab.ui
 

Subinterfaces of NotifiableAttributeSet in graphlab.ui
 interface NotifiableAttributeSetView
           
 

Classes in graphlab.ui that implement NotifiableAttributeSet
 class PortableNotifiableAttributeSetImpl
          this is a portable NotifiableAttributeSetImpl + View this means that the model of view can be changed
 

Methods in graphlab.ui that return NotifiableAttributeSet
 NotifiableAttributeSet PortableNotifiableAttributeSetImpl.getModel()
           
 

Methods in graphlab.ui with parameters of type NotifiableAttributeSet
 void PortableNotifiableAttributeSetImpl.setModel(NotifiableAttributeSet aModel)
           
static GAttrFrame UIUtils.showEditDialog(NotifiableAttributeSet input, boolean modal)
           
 

Uses of NotifiableAttributeSet in graphlab.ui.components.gpropertyeditor
 

Methods in graphlab.ui.components.gpropertyeditor with parameters of type NotifiableAttributeSet
 void GPropertyEditor.connect(NotifiableAttributeSet x)
           
 void ProEditor2NotifiableAttributeSetConnector.connect(NotifiableAttributeSet atr)
           
 void ProEditor2NotifiableAttributeSetConnector.load(NotifiableAttributeSet x)
           
 

Uses of NotifiableAttributeSet in graphlab.ui.components.gpropertyeditor.utils
 

Methods in graphlab.ui.components.gpropertyeditor.utils with parameters of type NotifiableAttributeSet
 NotifiableAttributeSetImpl ObjectViewer.getSortedNotifiableAttributeSet(NotifiableAttributeSet in)
           
 

Uses of NotifiableAttributeSet in graphlab.ui.components.utils
 

Methods in graphlab.ui.components.utils with parameters of type NotifiableAttributeSet
static GAttrFrame GAttrFrame.showEditDialog(NotifiableAttributeSet input)
           
static GAttrFrame GAttrFrame.showEditDialog(NotifiableAttributeSet input, boolean modal)
          Shows a Property editor to edit the attributes in the input.
 

Constructors in graphlab.ui.components.utils with parameters of type NotifiableAttributeSet
GAttrFrame(java.awt.Frame parent, NotifiableAttributeSet atr, boolean modal)
          Creates new form GAttrFrame
 


GraphLab Project