: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

org.zaval.lw
Interface LwViewProvider

All Known Implementing Classes:
LwSlider, LwList, LwTree

public interface LwViewProvider

This interface is used to provide a view for the specified object. For example, tree view component uses the interface to define a view for its nodes.


Method Summary
 LwView getView(LwComponent d, java.lang.Object obj)
          Gets the view for the specified object of the specified component.
 

Method Detail

getView

public LwView getView(LwComponent d,
                      java.lang.Object obj)
Gets the view for the specified object of the specified component.
Parameters:
d - the specified component.
obj - the specified object.
Returns:
a view.


: up