Examples of asString()


Examples of javafx.beans.property.SimpleDoubleProperty.asString()

    gridPane.add(new Slider(0.1, 1.0, 0.6) {{
      valueProperty().bindBidirectional(cellSizeRatio);
      setBlockIncrement(0.05);
    }}, 2, 8);
    gridPane.add(new Label() {{
      textProperty().bind(cellSizeRatio.asString("%4.2f"));
    }}, 3, 8);

    carousel.cellAlignmentProperty().bind(alignment);
    carousel.reflectionEnabledProperty().bind(reflectionEnabled);
    carousel.clipReflectionsProperty().bind(clipReflections);
View Full Code Here

Examples of net.aufdemrand.denizen.objects.Element.asString()

        if (Generator != null)
            world = Bukkit.getServer().createWorld(WorldCreator
                    .name(World_Name.asString())
                    .generator(Generator.asString())
                    .type(WorldType.valueOf(worldType.asString().toUpperCase())));

        else
            world = Bukkit.getServer().createWorld(WorldCreator
                    .name(World_Name.asString())
                    .type(WorldType.valueOf(worldType.asString().toUpperCase())));
View Full Code Here

Examples of net.helipilot50.stocktrade.framework.TextData.asString()

                name = name.copyRange(name.getOffset());
            }
            boolean ascending = (this.getSorter().getSortDirection() == TableSorter.ASCENDING);

            DynamicArray<Object> theArray = (DynamicArray<Object>)(this.tableModel.getData().clone());
            theArray.sort(name.asString(),false,ascending);
            index = theArray.indexOf(node);
        }
        return this.getSelectionModel().isSelectedIndex(index);
    }
View Full Code Here

Examples of net.sourceforge.cruisecontrol.distributed.BuildAgentService.asString()

            String agentInfo;
            for (int x = 0; x < serviceItems.length; x++) {
                serviceItem = serviceItems[x];
                agent = (BuildAgentService) serviceItem.service;
                agentInfo = "Build Agent: " + serviceItem.serviceID + "\n"
                        + agent.asString()
                        + MulticastDiscovery.toStringEntries(serviceItem.attributeSets)
                        + "\n";
                LOG.debug(agentInfo);
                result.append(agentInfo);
            }
View Full Code Here

Examples of net.sourceforge.urin.UrinReference.asString()

                                "   <artifactId>xazzle</artifactId>\n" +
                                "   <version>" + version + "</version>\n" +
                                "</dependency>")
                        ),
                        listItemTag(
                                xhtmlText("or as the full source code including tests etc. using Subversion from "), codeTag(anchorTag(xhtmlText(svnUri.asString())).withHref(XazzlePage.href(svnUri))), xhtmlText(".")
                        )
                ),
                paragraphTag(
                        xhtmlText("Previous versions are "), anchorTag(xhtmlText("also available")).withHref(XazzlePage.href(https(registeredName("sourceforge.net"), path("projects", "xazzle", "files")))), xhtmlText(".")
                )
View Full Code Here

Examples of org.antlr.v4.automata.ATNPrinter.asString()

    System.out.println(dot.getDOT(g.atn.ruleToStartState[g.getRule(ruleName).index]));

    Rule r = g.getRule(ruleName);
    ATNState startState = g.atn.ruleToStartState[r.index];
    ATNPrinter serializer = new ATNPrinter(g, startState);
    String result = serializer.asString();

    //System.out.print(result);
    assertEquals(expecting, result);
  }
View Full Code Here

Examples of org.apache.hadoop.hbase.hbql.client.HMapping.asString()

        mapping = connection.getMapping(mappingName);
        assertTrue(mapping.getMappingName().equals(mappingName) && !mapping.getTableName().equals(mappingName));
        assertTrue(mapping.isTempMapping());

        mapping = connection.getMapping(mappingName);
        System.out.print(mapping.asString());

        connection.dropMapping(mappingName);
        assertFalse(connection.mappingExists(mappingName));

        Set<HMapping> mappings = connection.getAllMappings();
View Full Code Here

Examples of org.apache.hadoop.hbase.hbql.mapping.TableMapping.asString()

        final TableMapping tableMapping = this.getMappingContext().getTableMapping();

        if (tableMapping == null)
            return new ExecutionResults("Unknown mapping: " + this.getMappingContext().getMappingName());
        else
            return new ExecutionResults(tableMapping.asString());
    }

    public static String usage() {
        return "DESCRIBE MAPPING mapping_name";
    }
View Full Code Here

Examples of org.apache.hadoop.hbase.hbql.statement.args.WithArgs.asString()

    }

    private static boolean evaluateWhereValue(final String expr) {
        try {
            final WithArgs args = ParserUtil.parseWithClause(expr);
            System.out.println("Evaluating: " + args.asString());
            args.setMappingContext(new MappingContext());
            args.validateArgTypes();
            return true;
        }
        catch (HBqlException e) {
View Full Code Here

Examples of org.apache.isis.applib.services.memento.MementoService.Memento.asString()

        memento.set("someBookmark", new Bookmark("CUS", "12345"));
        memento.set("someNullValue", null);
       
        memento.set("someEnum", DOW.Wed);
       
        final String str = memento.asString();
       
        final Memento memento2 = mementoService.parse(str);
       
        assertThat(memento2.get("someString", String.class), is("a string"));
        assertThat(memento2.get("someStringWithDoubleSpaces", String.class), is("a  string"));
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.