Examples of tags()


Examples of com.aphyr.riemann.client.EventDSL.tags()

        EventDSL event = riemann.event();
        if (c.localHost != null) {
            event.host(c.localHost);
        }
        if (!c.tags.isEmpty()) {
            event.tags(c.tags);
        }
        return event;
    }

    // The service name for a given metric.
View Full Code Here

Examples of com.avast.syringe.config.ConfigProperty.tags()

        ConfigProperty configPropertyAnnotation = field.getAnnotation(ConfigProperty.class);
        if (configPropertyAnnotation == null) {
            return field.getName().equals(tag);
        }

        for (String t : configPropertyAnnotation.tags()) {
            if (t.equals(tag)) {
                return true;
            }
        }
View Full Code Here

Examples of com.jcabi.github.References.tags()

    public void iteratesTags() throws Exception {
        final Repo owner = this.repo();
        final References refs = owner.git().references();
        refs.create("refs/tags/t2", "2322f34");
        MatcherAssert.assertThat(
            refs.tags(),
            Matchers.<Reference>iterableWithSize(1)
        );
    }

    /**
 
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

    } else if (null != (cd = seeTag.referencedClass())) {
      ref = getId(cd);

      // See if the target has a title.
      //
      Tag[] titleTag = cd.tags("@title");
      if (titleTag.length > 0) {
        title = titleTag[0].text().trim();
        if (title.length() == 0) {
          title = null;
        }
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                }
                if (excluded) {
                    continue;
                }

                if (!useHidden || source.tags(TAG_HIDDEN).length == 0 && target.tags(TAG_HIDDEN).length == 0) {
                    edgesToRender.add(edge);
                }
                if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(source.qualifiedName(), source);
                }
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                    edgesToRender.add(edge);
                }
                if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(source.qualifiedName(), source);
                }
                if (!useHidden || target.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(target.qualifiedName(), target);
                }
            }

            Set<Edge> reversedDirectEdges = reversedEdges.get(cls);
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                    }
                    if (excluded) {
                        continue;
                    }

                    if (!useHidden || source.tags(TAG_HIDDEN).length == 0 && target.tags(TAG_HIDDEN).length == 0) {
                        edgesToRender.add(edge);
                    }
                    if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                        nodesToRender.put(source.qualifiedName(), source);
                    }
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                        edgesToRender.add(edge);
                    }
                    if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                        nodesToRender.put(source.qualifiedName(), source);
                    }
                    if (!useHidden || target.tags(TAG_HIDDEN).length == 0) {
                        nodesToRender.put(target.qualifiedName(), target);
                    }
                }
            }
        }
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                }
                if (excluded) {
                    continue;
                }

                if (!useHidden || source.tags(TAG_HIDDEN).length == 0 && target.tags(TAG_HIDDEN).length == 0) {
                    edgesToRender.add(edge);
                }
                if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(source.qualifiedName(), source);
                }
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.tags()

                    edgesToRender.add(edge);
                }
                if (!useHidden || source.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(source.qualifiedName(), source);
                }
                if (!useHidden || target.tags(TAG_HIDDEN).length == 0) {
                    nodesToRender.put(target.qualifiedName(), target);
                }
            }

            Set<Edge> reversedDirectEdges = reversedEdges.get(cls);
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.