Examples of comment()


Examples of org.hibernate.junit.SkipForDialect.comment()

            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
          }
        }
        else {
          if ( dialectClass.isInstance( dialect ) ) {
            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
          }
        }
      }
    }
View Full Code Here

Examples of org.hibernate.testing.junit.RequiresDialect.comment()

            return buildSkip( dialect, null, null );
          }
        }
        else {
          if ( !dialectClass.isInstance( dialect ) ) {
            return buildSkip( dialect, requiresDialectAnn.comment(), requiresDialectAnn.jiraKey() );
          }
        }
      }
    }
View Full Code Here

Examples of org.hibernate.testing.junit.RequiresDialectFeature.comment()

    if ( requiresDialectFeatureAnn != null ) {
      Class<? extends DialectChecks> checkClass = requiresDialectFeatureAnn.value();
      DialectChecks check = checkClass.newInstance();
      boolean skip = !check.include( dialect );
      if ( skip ) {
        return buildSkip( dialect, requiresDialectFeatureAnn.comment(), requiresDialectFeatureAnn.jiraKey() );
      }
    }
    return null;
  }
View Full Code Here

Examples of org.hibernate.testing.junit.SkipForDialect.comment()

    SkipForDialect skipForDialectAnn = locateAnnotation( SkipForDialect.class, runMethod );
    if ( skipForDialectAnn != null ) {
      for ( Class<? extends Dialect> dialectClass : skipForDialectAnn.value() ) {
        if ( skipForDialectAnn.strictMatching() ) {
          if ( dialectClass.equals( dialect.getClass() ) ) {
            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
          }
        }
        else {
          if ( dialectClass.isInstance( dialect ) ) {
            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
View Full Code Here

Examples of org.hibernate.testing.junit.SkipForDialect.comment()

            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
          }
        }
        else {
          if ( dialectClass.isInstance( dialect ) ) {
            return buildSkip( dialect, skipForDialectAnn.comment(), skipForDialectAnn.jiraKey() );
          }
        }
      }
    }
View Full Code Here

Examples of org.jrobin.graph.RrdGraphDef.comment()

          rrdDef.getArcDefs()[arcIndex].dump());
      LinearInterpolator linearInterpolator = new LinearInterpolator(timestamps, values);
      linearInterpolator.setInterpolationMethod(LinearInterpolator.INTERPOLATE_RIGHT);
      rrdGraphDef.datasource(dsName, linearInterpolator);
      rrdGraphDef.area(dsName, color, dsName + "\\r");
      rrdGraphDef.comment("START: " + new Date(t1 * 1000L) + "\\r");
      rrdGraphDef.comment("END: " + new Date(t2 * 1000L) + "\\r");
      int width = graphPanel.getWidth(), height = graphPanel.getHeight();
      rrdGraphDef.setWidth(width + deltaWidth);
      rrdGraphDef.setHeight(height + deltaHeight);
      rrdGraph = new RrdGraph(rrdGraphDef);
View Full Code Here

Examples of org.jrobin.graph.RrdGraphDef.comment()

      LinearInterpolator linearInterpolator = new LinearInterpolator(timestamps, values);
      linearInterpolator.setInterpolationMethod(LinearInterpolator.INTERPOLATE_RIGHT);
      rrdGraphDef.datasource(dsName, linearInterpolator);
      rrdGraphDef.area(dsName, color, dsName + "\\r");
      rrdGraphDef.comment("START: " + new Date(t1 * 1000L) + "\\r");
      rrdGraphDef.comment("END: " + new Date(t2 * 1000L) + "\\r");
      int width = graphPanel.getWidth(), height = graphPanel.getHeight();
      rrdGraphDef.setWidth(width + deltaWidth);
      rrdGraphDef.setHeight(height + deltaHeight);
      rrdGraph = new RrdGraph(rrdGraphDef);
      if (deltaWidth == 0 && deltaHeight == 0) {
View Full Code Here

Examples of org.pdf4j.saxon.event.Receiver.comment()

                out.characters(in.getStringValue(), 0, 0);
                break;

            case COMMENT:

                out.comment(in.getStringValue(), 0, 0);
                break;

            case PROCESSING_INSTRUCTION:

                out.processingInstruction(
View Full Code Here

Examples of org.pdf4j.saxon.event.SequenceReceiver.comment()

    public TailCall processLeavingTail(XPathContext context) throws XPathException {
        String comment = expandChildren(context).toString();
        comment = checkContent(comment, context);
        SequenceReceiver out = context.getReceiver();
        out.comment(comment, locationId, 0);
        return null;
    }

    /**
     * Check the content of the node, and adjust it if necessary
View Full Code Here

Examples of org.springframework.data.mongodb.repository.Meta.comment()

    if (meta.maxScanDocuments() > 0) {
      metaAttributes.setMaxScan(meta.maxScanDocuments());
    }

    if (StringUtils.hasText(meta.comment())) {
      metaAttributes.setComment(meta.comment());
    }

    if (meta.snapshot()) {
      metaAttributes.setSnapshot(meta.snapshot());
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.