Examples of text()


Examples of com.pointcliki.core.TextEntity.text()

                  showDownloadPage();
                }
 
                @Override
                public void onExtracting() {
                  downloadText.text("Extracting resources...");
                }
 
                @Override
                public void onProgress(float f) {
                  downloadBar.percent(f / 2 + fRezDown.progress() / 2);
View Full Code Here

Examples of com.sun.enterprise.tools.common.validation.util.Display.text()

            Collection failures =
                validationManager.validate(rootElement);

            Display display = new Display();
            display.text(failures);
            display.gui(failures);
        }
    }
}
View Full Code Here

Examples of com.sun.javadoc.Tag.text()

    private static String getFirstSentence(Tag[] tags) {
        String firstSentence = null;
        if (tags.length > 0) {
            Tag first = tags[0];
            firstSentence = first.text();
        }
        return firstSentence;
    }

    private static String getTypeName(boolean isStatic, boolean isVarArgs, Type type) {
View Full Code Here

Examples of com.trolltech.qt.core.QMimeData.text()

      return;
    }

    if (mime.hasUrls()) {
      logger.log(logger.EXTREME, "URL paste found");
      if (mime.text().startsWith("evernote:")) {
        handleNoteLink(mime);
      } else {
        handleUrls(mime);
        browser.setFocus();
      }
View Full Code Here

Examples of com.trolltech.qt.gui.QListWidgetItem.text()

        QListWidgetItem item = new QListWidgetItem(allTags.get(i).getName());
        tagList.addItem(item);
        if (selectedTags != null) {
          for (int j=0; j<selectedTags.size(); j++) {
            String name = selectedTags.get(j);
            if (name.equals(item.text())) {
              item.setSelected(true);
              j=selectedTags.size()+1;
            }
          }
        }
View Full Code Here

Examples of com.trolltech.qt.gui.QTableWidgetItem.text()

   
    conn.getWatchFolderTable().expungeAll();
    // Start building from the table
    for (int i=0; i<dialog.table.rowCount(); i++) {
      QTableWidgetItem item = dialog.table.item(i, 0);
      String dir = item.text();
      item = dialog.table.item(i, 1);
      String notebook = item.text();
      item = dialog.table.item(i, 2);
      boolean keep;
      if (item.text().equalsIgnoreCase("Keep"))
View Full Code Here

Examples of com.trolltech.qt.gui.QTreeWidgetItem.text()

    QTreeWidgetItem root = invisibleRootItem();
    QTreeWidgetItem child;

    for (int i=0; i<root.childCount(); i++) {
      child = root.child(i);
      if (child.text(1).equals(guid)) {
        child.setSelected(true);
        return true;
      }
    }
    return false;
View Full Code Here

Examples of com.trolltech.qt.xml.QDomElement.text()

     
      // Go through the children ("t" nodes)
      for (int j=0; j<children.length(); j++) {
          QDomElement child = children.at(j).toElement();
          if (child.nodeName().equalsIgnoreCase("t")) {
            String text = child.text();   // recognition text
            int weight = new Integer(child.attribute("w"))// recognition weight
            if (weight >= Global.getRecognitionWeight()) {   // Are we above the maximum?
             
              // Check to see if this word matches something we were searching for.
              for (int k=0; k<enSearch.hilightWords.size(); k++) {
View Full Code Here

Examples of com.volantis.mcs.eclipse.common.odom.ODOMFactory.text()

            for (int i=0; i<keywords.length; i++) {
                Element keyword = factory.element(
                            DeviceRepositorySchemaConstants.
                                POLICY_DEFINITION_KEYWORD_ELEMENT_NAME,
                            namespace);
                keyword.addContent(factory.text((String) keywords[i]));
                selectionElement.addContent(keyword);
            }
        } finally {
            policyDefinition.addChangeListener(odomChangeListener);
        }
View Full Code Here

Examples of com.vtence.molecule.lib.TextBody.text()

                    TextBody body = new TextBody();
                    for (int id : albums.keySet()) {
                        Album album = albums.get(id);
                        body.append(String.format("%d: %s\n", id, album.info()));
                    }
                    if (body.text().isEmpty()) {
                        body.append("Your music library is empty");
                    }
                    response.body(body);
                }
            });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.