Tabnine Logo
Type.toString
Code IndexAdd Tabnine to your IDE (free)

How to use
toString
method
in
de.smartics.testdoc.core.doc.Type

Best Java code snippets using de.smartics.testdoc.core.doc.Type.toString (Showing top 5 results out of 315)

origin: de.smartics.testdoc/testdoc-report

private String createFileName(final Type testCaseType)
{
 final String type = testCaseType.toString();
 return "TEST-" + type + ".xml";
}
origin: de.smartics.testdoc/testdoc-maven-report-plugin

@Override
protected void renderTestDocTypeStart(final UnitTestDoc testDoc)
{
 final Type type = testDoc.getUutType();
 final String id = type.toString();
 final String name = type.getTypeName();
 sink.section3();
 helper.renderAnchor(id);
 sink.sectionTitle3();
 sink.text(name + " (" + type.getPackageName() + ')');
 sink.sectionTitle3_();
}
origin: de.smartics.testdoc/maven-testdoc-report-plugin

@Override
protected void renderTestDocTypeStart(final UnitTestDoc testDoc)
{
 final Type type = testDoc.getUutType();
 final String id = type.toString();
 final String name = type.getTypeName();
 sink.section3();
 helper.renderAnchor(id);
 sink.sectionTitle3();
 sink.text(name + " (" + type.getPackageName() + ')');
 sink.sectionTitle3_();
}
origin: de.smartics.testdoc/testdoc-maven-report-plugin

private void renderSections(final Section<UnitTestDoc> section,
  final int level)
{
 final String name = section.getName();
 final String sectionLabel = messages.getLabel(name);
 helper.renderSectionStart(level, sectionLabel);
 if (!section.containsSubSections())
 {
  helper.renderIndexTableStart();
  int counter = 1;
  for (final UnitTestDoc testDoc : section.getItems())
  {
   final Type type = testDoc.getUutType();
   final String label = type.getTypeName();
   final String id = type.toString();
   helper.renderIndexRow(counter, label, id);
   counter++;
  }
  helper.renderIndexTableEnd();
 }
 else
 {
  final int nextLevel = level + 1;
  for (final Section<UnitTestDoc> subSection : section.getSubSections())
  {
   renderSections(subSection, nextLevel);
  }
 }
 helper.renderSectionEnd(level);
}
origin: de.smartics.testdoc/maven-testdoc-report-plugin

private void renderSections(final Section<UnitTestDoc> section,
  final int level)
{
 final String name = section.getName();
 final String sectionLabel = messages.getLabel(name);
 helper.renderSectionStart(level, sectionLabel);
 if (!section.containsSubSections())
 {
  helper.renderIndexTableStart();
  int counter = 1;
  for (final UnitTestDoc testDoc : section.getItems())
  {
   final Type type = testDoc.getUutType();
   final String label = type.getTypeName();
   final String id = type.toString();
   helper.renderIndexRow(counter, label, id);
   counter++;
  }
  helper.renderIndexTableEnd();
 }
 else
 {
  final int nextLevel = level + 1;
  for (final Section<UnitTestDoc> subSection : section.getSubSections())
  {
   renderSections(subSection, nextLevel);
  }
 }
 helper.renderSectionEnd(level);
}
de.smartics.testdoc.core.docTypetoString

Popular methods of Type

  • getPackageName
  • getTypeName
  • <init>

Popular in Java

  • Reading from database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setContentView (Activity)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Runner (org.openjdk.jmh.runner)
  • Best IntelliJ plugins
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