Tabnine Logo
Coordinate
Code IndexAdd Tabnine to your IDE (free)

How to use
Coordinate
in
io.vertx.docgen

Best Java code snippets using io.vertx.docgen.Coordinate (Showing top 4 results out of 315)

origin: io.vertx/vertx-lang-js-gen

 baselink = "../";
} else {
 baselink = "../../" + coordinate.getArtifactId() + "/";
 baselink = "../";
} else {
 baselink = "../../" + coordinate.getArtifactId() + "/";
origin: io.vertx/vertx-docgen

    String artifactId = attributes.getValue(new Attributes.Name("Maven-Artifact-Id"));
    String version = attributes.getValue(new Attributes.Name("Maven-Version"));
    return new Coordinate(groupId, artifactId, version);
return new Coordinate(null, null, null);
origin: io.vertx/vertx-docgen

assertEquals("`link:type[ResolvableType]`", s);
assertEquals(1, resolved.size());
assertEquals("foo", resolved.get(0).getGroupId());
assertEquals("bar", resolved.get(0).getArtifactId());
assertEquals("1.2.3", resolved.get(0).getVersion());
origin: io.vertx/vertx-lang-scala-codegen

@Override
public String resolveTypeLink(TypeElement elt, Coordinate coordinate) {
 TypeInfo type = null;
 try {
  type = factory.create(elt.asType());
 }
 catch (Exception e) {
  System.out.println("Could not resolve doc link for type " + elt.getQualifiedName());
  return null;
 }
 if (type.getKind().equals(ClassKind.ENUM) && ((EnumTypeInfo)type).isGen()) {
  String baselink = null;
  if (coordinate == null) baselink = "../";
  else baselink = "../../" + coordinate.getArtifactId() + "/";
  return baselink + "enums.html#" + elt.getSimpleName().toString();
 }
 if (type.getKind().equals(ClassKind.DATA_OBJECT)) {
  String baselink = null;
  if (coordinate == null) baselink = "../";
  else baselink = "../../" + coordinate.getArtifactId() + "/";
  return baselink + "dataobjects.html#" + elt.getSimpleName().toString();
 }
 if (type.getKind().equals(ClassKind.API)) {
  ApiTypeInfo api = (ApiTypeInfo)type.getRaw();
  return "../../scaladocs/" + api.translateName("scala").replace('.', '/') + ".html";
 }
 return null;
}
io.vertx.docgenCoordinate

Javadoc

Artifact coordinates.

Most used methods

  • getArtifactId
  • <init>
  • getGroupId
  • getVersion

Popular in Java

  • Making http requests using okhttp
  • getApplicationContext (Context)
  • requestLocationUpdates (LocationManager)
  • setScale (BigDecimal)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now