congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DefaultAbstractTree.init
Code IndexAdd Tabnine to your IDE (free)

How to use
init
method
in
org.apache.wicket.extensions.markup.html.tree.DefaultAbstractTree

Best Java code snippets using org.apache.wicket.extensions.markup.html.tree.DefaultAbstractTree.init (Showing top 3 results out of 315)

origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Tree constructor.
 *
 * @param id
 *            The component id
 */
public DefaultAbstractTree(String id)
{
  super(id);
  init();
}
origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Tree constructor.
 *
 * @param id
 *            The component id
 * @param model
 *            The tree model
 */
public DefaultAbstractTree(String id, IModel<TreeModel> model)
{
  super(id, model);
  init();
}
origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Tree constructor.
 *
 * @param id
 *            The component id
 * @param model
 *            The tree model
 */
@SuppressWarnings("unchecked")
public DefaultAbstractTree(String id, TreeModel model)
{
  super(id, new WicketTreeModel());
  setModelObject(model);
  init();
}
org.apache.wicket.extensions.markup.html.treeDefaultAbstractTreeinit

Javadoc

Performs the tree initialization. Adds header contribution for the stylesheet.

Popular methods of DefaultAbstractTree

  • getNodeIcon
    Returns the resource reference for icon of specified tree node.
  • getCSS
    Returns the resource reference of default stylesheet.
  • getFolderClosed
    Returns the resource reference of default closed tree folder.
  • getFolderOpen
    Returns the resource reference of default open tree folder.
  • getItem
    Returns the resource reference of default tree item (not folder).
  • getLinkType
    Returns the current type of links on tree items.
  • getTreeState
  • invalidateAll
  • isNodeExpanded
  • newJunctionImage
    Creates an image placed on junction link. This image actually consists of two spans with different c
  • newLink
    Creates a link of type specified by current linkType. When the links is clicked it calls the specifi
  • onJunctionLinkClicked
    Callback function called after user clicked on an junction link. The node has already been expanded/
  • newLink,
  • onJunctionLinkClicked,
  • onNodeLinkClicked,
  • onTargetRespond,
  • setModelObject,
  • updateTree,
  • add,
  • renderHead

Popular in Java

  • Making http post requests using okhttp
  • startActivity (Activity)
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Notification (javax.management)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now