congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PropertyMetaDataParser.readPropertySetName
Code IndexAdd Tabnine to your IDE (free)

How to use
readPropertySetName
method
in
de.smartics.properties.spi.core.metadata.PropertyMetaDataParser

Best Java code snippets using de.smartics.properties.spi.core.metadata.PropertyMetaDataParser.readPropertySetName (Showing top 2 results out of 315)

origin: de.smartics.properties/smartics-properties-core

/**
 * Reads the property key information from the method.
 *
 * @param method the method to read the property key.
 * @return the property key provided by this method.
 */
public PropertyKey readKey(final Method method)
{
 final String set = readPropertySetName(method);
 final String name = readPropertyKeyName(method);
 return PropertyKey.create(set, name);
}
origin: de.smartics.properties/smartics-properties-report

private void addReportSet(final PropertyReport report)
{
 final String type = propertyDescriptorType.getFullyQualifiedName();
 final String comment = propertyDescriptorType.getComment();
 final PropertyReportSet.Builder builder = new PropertyReportSet.Builder();
 builder.withType(type);
 builder.withComment(comment);
 final PropertyMetaDataParser metaDataParser =
   PropertyMetaDataParser.createWithoutContextAccess();
 final String name =
   metaDataParser.readPropertySetName(propertySetJavaClass);
 builder.withPropertySetName(name);
 final ProjectdocMetaData metaData = projectdocCollector.getParentMetadata();
 builder.with(metaData);
 final PropertyReportSet reportSet = builder.build();
 report.handle(reportSet);
}
de.smartics.properties.spi.core.metadataPropertyMetaDataParserreadPropertySetName

Javadoc

Reads the property set name of the type.

Popular methods of PropertyMetaDataParser

  • readDescriptor
    Reads the property descriptor information from the method.
  • create
    Convenience constructor to generate property descriptors with access to property comments.
  • readKey
    Reads the property key information from the method.
  • <init>
    Default constructor to generate property descriptors with comments.
  • addCategories
  • addCategoriesFromAnnotation
  • addComments
  • addConstraints
  • addDocumentProxy
  • addExpression
  • addLifecycle
  • addSecured
  • addLifecycle,
  • addSecured,
  • addUseType,
  • addValueRange,
  • calcElementConstraintMethod,
  • calcElementConstraints,
  • calcElementType,
  • calcElementsConstraintsType,
  • calcPropertyName

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setContentView (Activity)
  • setScale (BigDecimal)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JTable (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top Sublime Text 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