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

How to use
getStyle
method
in
com.dragome.guia.components.interfaces.VisualComponent

Best Java code snippets using com.dragome.guia.components.interfaces.VisualComponent.getStyle (Showing top 7 results out of 315)

origin: dragome/dragome-sdk

public void setEnabled(boolean enabled)
{
  visualComponent.getStyle().setEnabled(enabled);
}
public boolean isEnabled()
origin: dragome/dragome-sdk

  public boolean isEnabled()
  {
    return visualComponent.getStyle().isEnabled();
  }
}
origin: dragome/dragome-sdk

  public void removeStyleName(String styleName)
  {
    visualComponent.getStyle().removeClass(styleName);
  }
}
origin: dragome/dragome-sdk

public void setEnabled(boolean enabled)
{
  visualComponent.getStyle().setEnabled(enabled);
}
origin: dragome/dragome-sdk

public void addStyleName(String name)
{
  visualComponent.getStyle().addClass(name);
}
origin: dragome/dragome-sdk

public boolean isEnabled()
{
  return visualComponent.getStyle().isEnabled();
}
origin: dragome/dragome-sdk

public void addListeners(final VisualComponent visualComponent, final Element element)
{
  element.setAttribute(COMPONENT_ID_ATTRIBUTE, DragomeEntityManager.add(visualComponent));
  visualComponent.addListener(ListenerChanged.class, new ListenerChanged()
  {
    public <T extends EventListener> void listenerAdded(Class<? extends T> type, T listener)
    {
      addListeners(visualComponent, element, type);
    }
    public <T extends EventListener> void listenerRemoved(Class<? extends T> type, T listener)
    {
    }
  });
  addListeners(visualComponent, element, null);
  visualComponent.getStyle().fireStyleChanged();
}
com.dragome.guia.components.interfacesVisualComponentgetStyle

Popular methods of VisualComponent

  • addListener
  • getListener
  • getName
  • hasListener
  • addClickListener
  • addDoubleClickListener
  • addKeyListener
  • setName
  • setParent

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • onCreateOptionsMenu (Activity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Top PhpStorm 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