Tabnine Logo
Window.getCaption
Code IndexAdd Tabnine to your IDE (free)

How to use
getCaption
method
in
org.zkoss.zul.Window

Best Java code snippets using org.zkoss.zul.Window.getCaption (Showing top 2 results out of 315)

origin: org.carewebframework/org.carewebframework.rpms.ui.core

@Override
public void doAfterCompose(Component comp) throws Exception {
  super.doAfterCompose(comp);
  String[] subsets = (String[]) arg.get("subsets");
  TermSubset termSubsets = TermUtil.getSubset(null);
  
  for (String subset : subsets) {
    Listitem item = new Listitem(termSubsets.getMemberName(subset));
    item.setValue(subset);
    lbSubset.appendChild(item);
  }
  
  if (subsets.length == 1) {
    pnlSubset.setVisible(false);
    lbSubset.setSelectedIndex(0);
    ((Window) root).getCaption().setLabel(lbSubset.getSelectedItem().getLabel());
  }
  
  treeSearch.setItemRenderer(termMatchRenderer);
}

origin: org.zkoss.zk/zkmax

final Caption caption = self.getCaption();
final String title = self.getTitle();
final boolean isFrame = !self.inEmbedded() && !self.inPopup();
org.zkoss.zulWindowgetCaption

Javadoc

Returns the caption of this window.

Popular methods of Window

  • doModal
    Makes this window as a modal dialog. It will automatically center the window (ignoring #getLeft and
  • detach
  • getPage
  • getAttribute
  • setTitle
    Sets the title.
  • getChildren
  • getTitle
    Returns the title. Besides this attribute, you could use Caption to define a more sophisticated capt
  • isMaximizable
    Returns whether to display the maximizing button and allow the user to maximize the window.Default:
  • isMinimizable
    Returns whether to display the minimizing button and allow the user to minimize the window.Default:
  • setAttribute
  • setVisible
    Changes the visibility of the window.Note if you turned on the event thread: If a modal dialog becom
  • afterUnmarshal
  • setVisible,
  • afterUnmarshal,
  • checkOverlappable,
  • doEmbedded,
  • doHighlighted,
  • doOverlapped,
  • doPopup,
  • enterModal,
  • getBorder

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
  • getExternalFilesDir (Context)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BoxLayout (javax.swing)
  • Top plugins for WebStorm
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