Tabnine Logo
IComponentHierarchyBase.setTiny
Code IndexAdd Tabnine to your IDE (free)

How to use
setTiny
method
in
com.jwebmp.core.base.interfaces.IComponentHierarchyBase

Best Java code snippets using com.jwebmp.core.base.interfaces.IComponentHierarchyBase.setTiny (Showing top 6 results out of 315)

origin: com.jwebmp/jwebmp-core

/**
 * Overrides this and all below components to set tiny false
 *
 * @param tiny
 *
 * @return super.tiny
 *
 * @see ComponentEventBase#setTiny(boolean)
 */
@Override
@NotNull
public J setTiny(boolean tiny)
{
  getChildren().forEach(child -> child.setTiny(tiny));
  return super.setTiny(tiny);
}
origin: com.jwebmp.jre10/jwebmp-core

/**
 * Overrides this and all below components to set tiny false
 *
 * @param tiny
 *
 * @return super.tiny
 *
 * @see ComponentEventBase#setTiny(boolean)
 */
@Override
@NotNull
public J setTiny(boolean tiny)
{
  getChildren().forEach(child -> child.setTiny(tiny));
  return super.setTiny(tiny);
}
origin: com.jwebmp.jre11/jwebmp-core

/**
 * Overrides this and all below components to set tiny false
 *
 * @param tiny
 *
 * @return super.tiny
 *
 * @see ComponentEventBase#setTiny(boolean)
 */
@Override
@NotNull
public J setTiny(boolean tiny)
{
  getChildren().forEach(child -> child.setTiny(tiny));
  return super.setTiny(tiny);
}
origin: com.jwebmp.jre10/jwebmp-core

/**
 * Add a new child to this component
 * <p>
 *
 * @param newChild
 *         The child to be added
 *         <p>
 *
 * @return The new child added
 */
@Override
@SuppressWarnings("unchecked")
@NotNull
public J add(@NotNull C newChild)
{
  newChild.setParent(this);
  newChild.setTiny(isTiny());
  newChild.setPage(getPage());
  getChildren().add(newChild);
  newChild.init();
  newChild.preConfigure();
  return (J) this;
}
origin: com.jwebmp/jwebmp-core

/**
 * Add a new child to this component
 * <p>
 *
 * @param newChild
 *         The child to be added
 *         <p>
 *
 * @return The new child added
 */
@Override
@SuppressWarnings("unchecked")
@NotNull
public J add(@NotNull C newChild)
{
  newChild.setParent(this);
  newChild.setTiny(isTiny());
  newChild.setPage(getPage());
  getChildren().add(newChild);
  newChild.init();
  newChild.preConfigure();
  return (J) this;
}
origin: com.jwebmp.jre11/jwebmp-core

/**
 * Add a new child to this component
 * <p>
 *
 * @param newChild
 *         The child to be added
 *         <p>
 *
 * @return The new child added
 */
@Override
@SuppressWarnings("unchecked")
@NotNull
public J add(@NotNull C newChild)
{
  newChild.setParent(this);
  newChild.setTiny(isTiny());
  newChild.setPage(getPage());
  getChildren().add(newChild);
  newChild.init();
  newChild.preConfigure();
  return (J) this;
}
com.jwebmp.core.base.interfacesIComponentHierarchyBasesetTiny

Javadoc

Overrides this and all below components to set tiny false

Popular methods of IComponentHierarchyBase

  • addClass
    Adds a class name to the class list
  • asAttributeBase
  • asBase
  • destroy
  • getChildrenHierarchy
    Get an array list of all children and their children recursively Excludes this object
  • getCssReferencesAll
    Adds in the JavaScript References for all the children
  • getEventsAll
    Returns a complete list of events
  • getJavascriptReferencesAll
    Adds in the JavaScript References for all the children
  • init
  • isConfigured
  • preConfigure
  • removeClass
    Removes a class name from this component
  • preConfigure,
  • removeClass,
  • setPage,
  • setParent,
  • toString

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Path (java.nio.file)
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Best IntelliJ plugins
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