Package com.luciad.lucy.addons.treetable
Class TLcyTreeTableViewAddOn
java.lang.Object
com.luciad.lucy.addons.ALcyAddOn
com.luciad.lucy.addons.treetable.TLcyTreeTableViewAddOn
This add-on provides the exact same functionality as the TreeTableViewAddOn sample class, and is actually
a wrapper around it. This construct allows to either use this add-on as-is, or to not use it at all
and replace it with the identical TreeTableViewAddOn. As the source code of the latter is available as sample
code, it offers unlimited customization possibilities.
Please refer to TreeTableViewAddOn for an explanation of what this add-on does.
To replace this add-on with the sample version, add the following snippet to your addons.xml file.
<!-- Replace the official tree table view add-on by the sample-based version and the sample config file-->
<addon>
<class>com.luciad.lucy.addons.treetable.TLcyTreeTableViewAddOn</class>
<exclude/>
</addon>
<addon>
<name>Tree table view</name>
<class>samples.lucy.treetableview.TreeTableViewAddOn</class>
<configFile>samples/TreeTableViewAddOn.cfg</configFile>
</addon>
- Since:
- 11.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidplugInto(ILcyLucyEnv aLucyEnv) Plugs this addon into the given lucy environment.voidunplugFrom(ILcyLucyEnv aLucyEnv) Unplugs this addon from the given Lucy environment.Methods inherited from class com.luciad.lucy.addons.ALcyAddOn
getConfigSourceName, getDisplayName, setConfigSourceName, setDisplayName
-
Constructor Details
-
TLcyTreeTableViewAddOn
public TLcyTreeTableViewAddOn()Default constructor
-
-
Method Details
-
plugInto
Description copied from class:ALcyAddOnPlugs this addon into the given lucy environment. It is in the implementation of this method that the addon adds its functionality to the Lucy backend. -
unplugFrom
Description copied from class:ALcyAddOnUnplugs this addon from the given Lucy environment. It removes the functionality previously added to the Lucy backend.- Specified by:
unplugFromin classALcyAddOn- Parameters:
aLucyEnv- The lucy environment to unplug from.- See Also:
-