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

Quick Search    Search Deep

ulu.view
Interface View  view View download View.java

All Superinterfaces:
ContentSource, Handler, Invokable, Item, Propertied, Referrer, Searchable, java.io.Serializable, Sortable, Typed, UContained, UContainer
All Known Implementing Classes:
ViewImpl

public interface View
extends Item, UContainer, Searchable, Sortable

generic interface for an Item that can present a list of contained entities. This is now simply a placeholder now that Item implements Container too.


Field Summary
 
Fields inherited from interface ulu.view.Item
METHOD_ADD_TO_SCRAPBOOK
 
Fields inherited from interface ulu.view.UContained
PROP_PARENT
 
Fields inherited from interface ulu.view.Propertied
PROP_DISPLAY_LOD, PROP_NAME
 
Fields inherited from interface ulu.view.Typed
PROP_TYPE
 
Fields inherited from interface ulu.view.ContentSource
PROP_CONTENT_URL
 
Fields inherited from interface ulu.view.UContainer
METHOD_OPEN, METHOD_REFRESH, PROP_COUNT, PROP_DEFAULT_ITEM_PROPS
 
Method Summary
 boolean addItem(Item item, boolean update)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 void addListener(UEventListener vl)
          add a Listener to messages from this container
 void fireEvent(UEvent ev)
          generic wrapper for firing any ViewEvent
 ItemFilter getFilter()
          get a filter for this view
 Item getItem(java.lang.String name)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 boolean removeItem(Item item, boolean update)
          temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship
 void removeListener(UEventListener vl)
          remove a listener to messages from this container
 void setFilter(ItemFilter f)
          set a Filter for this view
 
Methods inherited from interface ulu.view.Item
getParentView, setParentView
 
Methods inherited from interface ulu.view.UContained
getParent, setParent
 
Methods inherited from interface ulu.view.Propertied
addProp, clearProps, getName, getProp, properties, removeProp, setName
 
Methods inherited from interface ulu.view.Invokable
addMethod, clearMethods, getDefaultMethod, getMethod, methods, removeMethod, setDefaultMethod
 
Methods inherited from interface ulu.view.Referrer
getReference, setReference
 
Methods inherited from interface ulu.view.Typed
getType, setType
 
Methods inherited from interface ulu.view.Handler
invoke
 
Methods inherited from interface ulu.view.ContentSource
getContent
 
Methods inherited from interface ulu.view.UContainer
addChild, clear, getChild, getCount, items, removeChild
 
Methods inherited from interface ulu.view.Searchable
getSearchClass
 
Methods inherited from interface ulu.view.Sortable
getSortClass
 

Method Detail

getItem

public Item getItem(java.lang.String name)
temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship


addItem

public boolean addItem(Item item,
                       boolean update)
temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship


removeItem

public boolean removeItem(Item item,
                          boolean update)
temporary map linking the generic UContainer/UContained to the specific View/Item kind of parent-to-child relationship


addListener

public void addListener(UEventListener vl)
add a Listener to messages from this container


removeListener

public void removeListener(UEventListener vl)
remove a listener to messages from this container


fireEvent

public void fireEvent(UEvent ev)
generic wrapper for firing any ViewEvent


getFilter

public ItemFilter getFilter()
get a filter for this view


setFilter

public void setFilter(ItemFilter f)
set a Filter for this view