Examples of namespace()


Examples of client.net.sf.saxon.ce.event.SequenceReceiver.namespace()

        String prefix = evaluatePrefix(context);
        String uri = value.toString();
        checkPrefixAndUri(prefix, uri, context);

        SequenceReceiver out = context.getReceiver();
        out.namespace(new NamespaceBinding(prefix, uri), ReceiverOptions.REJECT_DUPLICATES);
    }


    /**
     * Evaluate as an expression. We rely on the fact that when these instructions
View Full Code Here

Examples of client.net.sf.saxon.ce.tree.linked.LinkedTreeBuilder.namespace()

            builder.open();
            builder.startDocument();

            int st = StandardNames.XSL_STYLESHEET;
            builder.startElement(st, 0);
            builder.namespace(new NamespaceBinding("xsl", NamespaceConstant.XSLT), 0);
            builder.attribute(pool.allocate("", "", "version"), version);
            builder.startContent();

            int te = StandardNames.XSL_TEMPLATE;
            builder.startElement(te, 0);
View Full Code Here

Examples of co.cask.cdap.data2.datafabric.DefaultDatasetNamespace.namespace()

    String unqualifiedTableNamePrefix =
      type == QUEUE ? QueueConstants.QUEUE_TABLE_PREFIX : QueueConstants.STREAM_TABLE_PREFIX;
    this.type = type;
    DefaultDatasetNamespace namespace = new DefaultDatasetNamespace(cConf, Namespace.SYSTEM);
    this.tableNamePrefix =
      HBaseTableUtil.getHBaseTableName(namespace.namespace(unqualifiedTableNamePrefix));
    this.configTableName =
      HBaseTableUtil.getHBaseTableName(namespace.namespace(QueueConstants.QUEUE_CONFIG_TABLE_NAME));
    this.locationFactory = locationFactory;
  }
View Full Code Here

Examples of co.cask.tigon.data.dataset.DefaultDatasetNamespace.namespace()

    String unqualifiedTableNamePrefix =
      type == QueueConstants.QueueType.QUEUE ? QueueConstants.QUEUE_TABLE_PREFIX : QueueConstants.STREAM_TABLE_PREFIX;
    this.type = type;
    DefaultDatasetNamespace namespace = new DefaultDatasetNamespace(cConf, Namespace.SYSTEM);
    this.tableNamePrefix =
      HBaseTableUtil.getHBaseTableName(namespace.namespace(unqualifiedTableNamePrefix));
    this.configTableName =
      HBaseTableUtil.getHBaseTableName(namespace.namespace(QueueConstants.QUEUE_CONFIG_TABLE_NAME));
    this.locationFactory = locationFactory;
  }
View Full Code Here

Examples of com.asakusafw.modelgen.util.JoinedModelBuilder.namespace()

                ast.name.token,
                context.get(ast.from.table),
                ast.from.alias,
                context.get(ast.from.join.table),
                ast.from.join.alias);
        builder.namespace(target.namespace);

        // 結合条件
        for (On on : ast.from.join.condition) {
            builder.on(on.left.token, on.right.token);
        }
View Full Code Here

Examples of com.asakusafw.modelgen.util.SummarizedModelBuilder.namespace()

        SummarizedModelBuilder builder = new SummarizedModelBuilder(
                ast.name.token,
                context.get(ast.from.table),
                ast.from.alias);
        builder.namespace(target.namespace);

        // グループ化
        for (Name name : ast.groupBy) {
            builder.groupBy(name.token);
        }
View Full Code Here

Examples of com.asakusafw.modelgen.util.TableModelBuilder.namespace()

                        || prevTableName.equals(tableName) == false) {
                    if (builder != null) {
                        results.add(builder.toDescription());
                    }
                    builder = new TableModelBuilder(tableName);
                    builder.namespace(Constants.SOURCE_TABLE);
                    prevTableName = tableName;
                }

                // データ型からプロパティの型を得る
                PropertyTypeKind propertyType = MySqlDataType.getPropertyTypeByString(dataType);
View Full Code Here

Examples of com.linkedin.restli.server.annotations.RestLiActions.namespace()

  {
    RestLiActions actionsAnno = actionResourceClass.getAnnotation(RestLiActions.class);

    String name = actionsAnno.name();

    String namespace = actionsAnno.namespace();

    ResourceModel actionResourceModel = new ResourceModel(null, // primary key
                                                          null, // key key class
                                                          null, // key params class
                                                          Collections.<Key> emptySet(), // keys
View Full Code Here

Examples of com.ociweb.xml.StartTagWAX.namespace()

        StartTagWAX stw = pw.start("artist");
        stw.attr("name", "Gardot, Melody");
        stw.defaultNamespace("http://www.ociweb.com/music",
            "http://www.ociweb.com/xml/music.xsd");
        stw.namespace("date", "http://www.ociweb.com/date",
            "http://www.ociweb.com/xml/date.xsd");

        pw.comment("This is one of my favorite CDs!");
        stw = pw.start("cd");
        stw.attr("year", 2007);
View Full Code Here

Examples of com.ociweb.xml.WAX.namespace()

        wax.start("artist");
        wax.attr("name", "Gardot, Melody");
        wax.defaultNamespace("http://www.ociweb.com/music",
            "http://www.ociweb.com/xml/music.xsd");
        wax.namespace("date", "http://www.ociweb.com/date",
            "http://www.ociweb.com/xml/date.xsd");

        wax.comment("This is one of my favorite CDs!");
        wax.start("cd");
        wax.attr("year", 2007);
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.