Examples of text()


Examples of dcamapi.DCAMDEV_STRING.text()

    final Pointer<Byte> model = allocateBytes(256);

    final DCAMDEV_STRING lDCAMDEV_STRING = new DCAMDEV_STRING();
    lDCAMDEV_STRING.size(BridJ.sizeOf(DCAMDEV_STRING.class));
    lDCAMDEV_STRING.iString(DCAM_IDSTR.DCAM_IDSTR_MODEL.value());
    lDCAMDEV_STRING.text(model);
    lDCAMDEV_STRING.textbytes(model.getValidBytes());

    // dcamdev_getstring
    DcamapiLibrary.dcamdevGetstring((Pointer<HDCAM_struct>) Pointer.NULL,
                                    pointerTo(lDCAMDEV_STRING));
View Full Code Here

Examples of de.hpi.eworld.simulationstatistic.model.Value.text()

    }
    XYSeriesCollection dataCol = new XYSeriesCollection(serie);

    JFreeChart chart = ChartFactory.createScatterPlot(
        "Dependency Scatter Plot", firstValue.text() + "  " + firstValue.unit(),
        secondValue.text() + "  " + secondValue.unit(), dataCol,
        PlotOrientation.HORIZONTAL, true, true, false);
    chart.addSubtitle(new TextTitle("Each dot represents the value combination of one edge\n" +
        "Only non-zero values are considered"));
    ChartFrame frame = new ChartFrame("Dependency Scatter Plot", chart);
    frame.setIconImage(Toolkit.getDefaultToolkit().getImage(
View Full Code Here

Examples of edu.stanford.nlp.time.Timex.text()

          }
        }
      } else {
        // Fixup SUTime marking of twenty-second
        if ("DURATION".equals(currNerTag) && ordinalsToValues.containsKey(curWord)
                && curWord.endsWith("second") && timex.text().equals(curWord)) {
          wi.set(CoreAnnotations.NamedEntityTagAnnotation.class, "ORDINAL");
        }
      }

      prevNerTag = currNerTag;
View Full Code Here

Examples of er.neo4jadaptor.test.eo.FirstEntity.text()

    NSArray<FirstEntity> results = fetchAll(FirstEntity.ENTITY_NAME);
   
    assertEquals("Expecting only one row", 1, results.count());
    fetchedRow = results.get(0);
   
    assertEquals(row.text(), fetchedRow.text());
    assertEquals(row.bool(), fetchedRow.bool());
    assertEquals(row.number(), fetchedRow.number());
    assertEquals(row.timestamp(), fetchedRow.timestamp());
   
  }
View Full Code Here

Examples of fit.Parse.text()

    Parse args = cells.more;
    if (args == null) {
      throw new MissingCellsFailureException(cells.text()
          + " requires an argument");
    }
    String cmdString = args.text();
    connector = factory.createMongoSourceTargetConnector(cmdString);
    cmdString = parameters.replaceValuesIn(cmdString);
    args.addToBody("<hr/>" + label("Substituted Output") + "<hr/>");
    args.addToBody("<pre/>" + cmdString + "</pre>");
  }
View Full Code Here

Examples of groovy.util.slurpersupport.GPathResult.text()

            if (key.equals("children")) {
                return node.children();
            }

            if (key.equals("text")) {
                return node.text();
            }

            if (key.endsWith("[]")) {
                key = key.substring(0, key.length()-2);
                return node.getProperty(key);
View Full Code Here

Examples of groovy.util.slurpersupport.Node.text()

                        }
                    } else {
                        final Iterator iterator = pluginClass.nodeIterator();
                        while (iterator.hasNext()) {
                            Node node = (Node) iterator.next();
                            final String pluginClassName = node.text();
                            if (StringUtils.hasText(pluginClassName)) {
                                loadCorePlugin(pluginClassName, resource, result);
                            }
                        }
                    }
View Full Code Here

Examples of io.netty.handler.codec.http.websocketx.BinaryWebSocketFrame.text()

                final BinaryWebSocketFrame tf = (BinaryWebSocketFrame) webSocketFrame;
                objects.add(serializer.deserializeResponse(tf.content()));
            } else {
                final TextWebSocketFrame tf = (TextWebSocketFrame) webSocketFrame;
                final MessageTextSerializer textSerializer = (MessageTextSerializer) serializer;
                objects.add(textSerializer.deserializeResponse(tf.text()));
            }
        } finally {
            ReferenceCountUtil.release(webSocketFrame);
        }
    }
View Full Code Here

Examples of io.netty.handler.codec.http.websocketx.TextWebSocketFrame.text()

                final BinaryWebSocketFrame tf = (BinaryWebSocketFrame) webSocketFrame;
                objects.add(serializer.deserializeResponse(tf.content()));
            } else {
                final TextWebSocketFrame tf = (TextWebSocketFrame) webSocketFrame;
                final MessageTextSerializer textSerializer = (MessageTextSerializer) serializer;
                objects.add(textSerializer.deserializeResponse(tf.text()));
            }
        } finally {
            ReferenceCountUtil.release(webSocketFrame);
        }
    }
View Full Code Here

Examples of iryrwarosh.Message.text()

      Color color = (GainedFame.class.isAssignableFrom(m.getClass())) ? AsciiPanel.brightYellow : Common.guiForeground;
     
      if (SaidOutLoud.class.isAssignableFrom(m.getClass()))
        color = ((SaidOutLoud)m).creature.color();
     
      terminal.write(clean(m.text()), 1, i+2, color, null);
    }
  }
 
  private String clean(String text){
    return text.replace("player has", "player have")
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.