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

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

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

origin: com.jwebmp.jre10/jwebmp-bootstrap

/**
 * Sets the component displayed to the left or right (set that in the link)
 *
 * @param mediaComponent
 *
 * @return
 */
@Override
public BSMedia setMediaComponent(Component mediaComponent)
{
  if (this.mediaComponent != null)
  {
    getMediaLink().remove(this.mediaComponent);
    this.mediaComponent = null;
  }
  this.mediaComponent = mediaComponent;
  if (this.mediaComponent != null)
  {
    this.mediaComponent.addClass(BSComponentMediaOptions.Media_Object);
    getMediaLink().add(this.mediaComponent);
  }
  return this;
}
origin: com.jwebmp.jre11/jwebmp-bootstrap

/**
 * Sets the component displayed to the left or right (set that in the link)
 *
 * @param mediaComponent
 *
 * @return
 */
@Override
public BSMedia setMediaComponent(Component mediaComponent)
{
  if (this.mediaComponent != null)
  {
    getMediaLink().remove(this.mediaComponent);
    this.mediaComponent = null;
  }
  this.mediaComponent = mediaComponent;
  if (this.mediaComponent != null)
  {
    this.mediaComponent.addClass(BSComponentMediaOptions.Media_Object);
    getMediaLink().add(this.mediaComponent);
  }
  return this;
}
com.jwebmp.core.base.htmlLinkremove

Popular methods of Link

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

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setRequestProperty (URLConnection)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • BoxLayout (javax.swing)
  • JCheckBox (javax.swing)
  • Join (org.hibernate.mapping)
  • Best plugins for Eclipse
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