Tabnine Logo
Link.addClass
Code IndexAdd Tabnine to your IDE (free)

How to use
addClass
method
in
com.jwebmp.core.base.html.Link

Best Java code snippets using com.jwebmp.core.base.html.Link.addClass (Showing top 7 results out of 315)

origin: com.jwebmp.jre11/jwebmp-bootstrap

this.mediaLink.addClass(BSComponentMediaOptions.Media_Left);
this.mediaLink.addClass(BSComponentMediaOptions.Media_Right);
origin: com.jwebmp.jre10/jwebmp-bootstrap

this.mediaLink.addClass(BSComponentMediaOptions.Media_Left);
this.mediaLink.addClass(BSComponentMediaOptions.Media_Right);
origin: com.jwebmp/jwebmp-bootstrap4

/**
 * Adds a new list item (tab header that matches the right card-body) to the header with the given active property
 *
 * @param text
 * @param active
 *
 * @return
 */
@NotNull
public ListItem<?> addItem(String text, boolean active)
{
  ListItem<?> item = new ListItem<>();
  item.addClass(BSNavsOptions.Nav_Item);
  Link<?> link = new Link<>(StaticStrings.STRING_HASH);
  link.addClass(BSNavsOptions.Nav_Link);
  if (active)
  {
    link.addClass(BSNavsOptions.Active);
  }
  link.setText(text);
  item.add(link);
  add(item);
  return item;
}
origin: com.jwebmp.jre10/jwebmp-bootstrap4

/**
 * Adds a new list item (tab header that matches the right card-body) to the header with the given active property
 *
 * @param text
 * @param active
 *
 * @return
 */
@NotNull
public ListItem<?> addItem(String text, boolean active)
{
  ListItem<?> item = new ListItem<>();
  item.addClass(BSNavsOptions.Nav_Item);
  Link<?> link = new Link<>(StaticStrings.STRING_HASH);
  link.addClass(BSNavsOptions.Nav_Link);
  if (active)
  {
    link.addClass(BSNavsOptions.Active);
  }
  link.setText(text);
  item.add(link);
  add(item);
  return item;
}
origin: com.jwebmp.jre11/jwebmp-bootstrap4

/**
 * Adds a new list item (tab header that matches the right card-body) to the header with the given active property
 *
 * @param text
 * @param active
 *
 * @return
 */
@NotNull
public ListItem<?> addItem(String text, boolean active)
{
  ListItem<?> item = new ListItem<>();
  item.addClass(BSNavsOptions.Nav_Item);
  Link<?> link = new Link<>(StaticStrings.STRING_HASH);
  link.addClass(BSNavsOptions.Nav_Link);
  if (active)
  {
    link.addClass(BSNavsOptions.Active);
  }
  link.setText(text);
  item.add(link);
  add(item);
  return item;
}
origin: com.jwebmp.jre10/jwebmp-bootstrap

link.addClass(BSComponentNavsOptions.Nav_Link);
link.addAttribute(BSToggleAttributes.Data_Toggle, "tab");
link.addAttribute(BSAccordionAttributes.Role, "tab");
  link.addClass(BSDefaultOptions.Active);
  tab.getTabContent()
    .addClass(BSDefaultOptions.Active);
origin: com.jwebmp.jre11/jwebmp-bootstrap

link.addClass(BSComponentNavsOptions.Nav_Link);
link.addAttribute(BSToggleAttributes.Data_Toggle, "tab");
link.addAttribute(BSAccordionAttributes.Role, "tab");
  link.addClass(BSDefaultOptions.Active);
  tab.getTabContent()
    .addClass(BSDefaultOptions.Active);
com.jwebmp.core.base.htmlLinkaddClass

Popular methods of Link

  • <init>
    Creates a link directly to the address in the specified target frame
  • add
  • addAttribute
  • equals
  • hashCode
  • setText
  • preConfigure
  • remove
  • setDirectToAddress
    Sets the address to direct to

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • scheduleAtFixedRate (Timer)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • JList (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top Sublime Text 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