Examples of toNameString()


Examples of com.asakusafw.utils.java.model.syntax.Name.toNameString()

        Name client = emitClient(compiledSlots, null, null, null, null, outputLocation);

        LOG.debug("Finish preparing output stage for Direct I/O epilogue: batch={}, flow={}, class={}", new Object[] {
                environment.getBatchId(),
                environment.getFlowId(),
                client.toNameString(),
        });
        return new CompiledStage(client, Naming.getEpilogueName(moduleId));
    }

    private Name emitKey(List<Slot> slots) throws IOException {
View Full Code Here

Examples of com.asakusafw.utils.java.model.syntax.Name.toNameString()

                    continue;
                }
            } else if (attribute.getModelKind() == ModelKind.SINGLE_ELEMENT_ANNOTATION) {
                SingleElementAnnotation an = (SingleElementAnnotation) attribute;
                Name name = an.getType().getName();
                if (name.toNameString().equals(SuppressWarnings.class.getSimpleName())) {
                    continue;
                }
            }
            results.add(attribute);
        }
View Full Code Here

Examples of com.asakusafw.utils.java.model.syntax.Name.toNameString()

        Name client = emitClient(compiledSlots, key, value, grouping, ordering, outputLocation);

        LOG.debug("Finish preparing output stage for Direct I/O epilogue: batch={}, flow={}, class={}", new Object[] {
                environment.getBatchId(),
                environment.getFlowId(),
                client.toNameString(),
        });
        return new CompiledStage(client, Naming.getEpilogueName(moduleId));
    }

    private CompiledStage emitClientWithoutReducer(List<Slot> slots, Location outputLocation) throws IOException {
View Full Code Here

Examples of com.asakusafw.utils.java.model.syntax.QualifiedName.toNameString()

            .newQualifiedName(packageName, simpleName);
        LOG.debug("Finish preparing output file orderer: batch={}, flow={}, output={}, class={}", new Object[] {
                environment.getBatchId(),
                environment.getFlowId(),
                outputName,
                name.toNameString(),
        });
        return name;
    }

    private static final class Engine {
View Full Code Here

Examples of com.asakusafw.utils.java.model.syntax.QualifiedName.toNameString()

            .newQualifiedName(packageName, simpleName);
        LOG.debug("Finish preparing output file name template: batch={}, flow={}, output={}, class={}", new Object[] {
                environment.getBatchId(),
                environment.getFlowId(),
                outputName,
                name.toNameString(),
        });
        return name;
    }

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.