Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
ulu.view.Item

Uses of Item in ulu.view
 

Subinterfaces of Item in ulu.view
 interface JAFable
          interface indicating that an Item is compliant with the Java Activation Framework (JAF) and can supply a DataSource.
 interface View
           generic interface for an Item that can present a list of contained entities.
 

Classes in ulu.view that implement Item
 class FilterItem
          Deprecated.  
 class ItemImpl
          generic implementation of Item interface
 class ViewImpl
           generic implementation of ulu.view.View interface
 

Fields in ulu.view declared as Item
 Item[] UpdateEvent.items
          the items affected (null indicates all items)
 

Methods in ulu.view that return Item
 Item ItemFactory.wrap(java.lang.String name, java.lang.Object obj)
          Deprecated. return an Item wrapping around the supplied object, with the given name.
 Item View.getItem(java.lang.String name)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 Item DefaultItemFactory.wrap(java.lang.String name, java.lang.Object obj)
          return an Item wrapping around the supplied object, with the given name.
 Item DefaultItemFactory.specialCases(java.lang.String name, java.lang.Object obj)
          try to match with special cases defined in property sheets.
 Item ViewImpl.getItem(java.lang.String name)
          retrieve a contained item by name
 Item Itemable.getItem()
          get a custom view that represents this object - if you aren't using the interface in a multi-VM environment, ignore the RemoteException, i.e.
 

Methods in ulu.view with parameters of type Item
 void InteractiveDesignPruner.onPropertyFail(Item i, UField uf)
          action to take on a property that fails the filter
 void InteractiveDesignPruner.onMethodFail(Item i, UMethod um)
          action to take on a method that fails the filter
 void InteractiveDesignPruner.onPropertyPass(Item i, UField uf)
          action to take on a property that passes the filter, by default nothing
 void InteractiveDesignPruner.onMethodPass(Item i, UMethod um)
          action to take on a method that passes the filter, by default nothing
 void RemovingPruner.onPropertyFail(Item i, UField uf)
          action to take on a property that fails the filter
 void RemovingPruner.onMethodFail(Item i, UMethod um)
          action to take on a method that fails the filter
abstract  void ShaperImpl.modify(Item i)
          modify this Item in some way
 void ShaperChain.modify(Item i)
          modify this Item in some way, here by passing it to any child Shapers
 boolean NullFilter.test(Item i)
          return true if an item passes a test, false if if fails
 void Shaper.modify(Item i)
          modify this Item in some way
 void Pruner.modify(Item it)
          modify the Item by passing each field and method through the appropriate filter
abstract  void Pruner.onPropertyFail(Item i, UField uf)
          action to take on a property that fails the filter
abstract  void Pruner.onMethodFail(Item i, UMethod um)
          action to take on a method that fails the filter
 void Pruner.onPropertyPass(Item i, UField uf)
          action to take on a property that passes the filter, by default nothing
 void Pruner.onMethodPass(Item i, UMethod um)
          action to take on a method that passes the filter, by default nothing
 boolean CompoundFilter.test(Item i)
          return true if an item passes a test, false if it fails - simply roll through all the filters until it hits a decision
 void UpdateEvent.init(Item source, int type, Item[] it, java.lang.String[] props)
          behind-the-scenes 'real' constructor
static UEvent UEvent.getEvent(Item source, int tag)
          factory method for returning a default event type for each tag
 boolean PropertyFilter.test(Item i)
          expand on the standard test by checking first for > and < operators for numerical properties, allowing a simple numerical testing
 java.lang.String PropertyFilter.getTestString(Item i)
          use the Item's property value as test string, with special-case handling for Date objects
 boolean View.addItem(Item item, boolean update)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 boolean View.removeItem(Item item, boolean update)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 java.lang.String TypeFilter.getTestString(Item i)
          use the Item's name as test string
 boolean RegexpFilter.test(Item i)
          test the Item's test string against the regular expression pattern
abstract  java.lang.String RegexpFilter.getTestString(Item i)
          abstract method to be implemented from subclass - gets the test string from the item
 boolean RefClassFilter.test(Item i)
          return true if the Item implements the given class or interface
 boolean ViewImpl.addItem(Item it, boolean update)
          (attempt to) add an item to view - success status returned.
 boolean ViewImpl.removeItem(Item it, boolean update)
          (attempt to) remove an item from view - success status returned.
 void ViewImpl.fireUpdateEvent(int type, Item[] its)
          more specific wrapper for firing update events, specifying the type of update and the item(s) affected, etc.
 void ViewImpl.fireUpdateEvent(int type, Item[] its, java.lang.String[] props)
          more specific wrapper for firing update events, specifying the type of update and the item(s) affected, etc.
abstract  boolean FilterImpl.test(Item i)
          return true if an item passes a test, false if if fails
 boolean FilterImpl.show(Item i)
          return true if an item is visible, false if hidden (as defined by the combination of the test and the whitelist/blacklist switch)
 java.lang.String NameFilter.getTestString(Item i)
          use the Item's name as test string
 boolean ClassFilter.test(Item i)
          return true if the Item implements the given class or interface
 boolean ItemFilter.test(Item i)
          return true if an item passes a test, false if if fails
 boolean ItemFilter.show(Item i)
          return true if an item is visible, false if hidden (as defined by the combination of the test and the whitelist/blacklist switch
 

Constructors in ulu.view with parameters of type Item
MethodEvent(Item source, java.lang.String msg, UMethod meth)
          Deprecated. constructor requiring a message text/prompt and a method
MessageEvent(Item source, java.lang.String msg)
          constructor, requiring a message text
UpdateEvent(Item source)
          default constructor sends an update message for entire containe
UpdateEvent(Item source, int type)
          constructor to notify add/remove of entire container, or redirect message
UpdateEvent(Item source, int type, Item[] items)
          constructor to notify add/remove of specific items
UpdateEvent(Item source, Item[] it, java.lang.String[] props)
          constructor for notifying of specific property changes for specific items only.