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

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

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

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

/**
 * Reads the property descriptor information from the method.
 *
 * @param method the method to read the property descriptor.
 * @return the property descriptor provided by this method.
 * @throws NullPointerException if {@code method} is <code>null</code>.
 */
public PropertyDescriptor readDescriptor(final Method method)
 throws NullPointerException
{
 Arg.checkNotNull("method", method);
 final PropertyMetaData.Builder builder = new PropertyMetaData.Builder();
 final Class<?> declaringType = method.getDeclaringClass();
 final PropertyKey key = readKey(method);
 final PropertyType type = readType(method);
 builder.with(new PropertyContextProxy(context))
   .withDeclaringType(declaringType).with(key).with(type);
 addValueRange(builder, method);
 addExpression(builder, method);
 addLifecycle(builder, method);
 addConstraints(builder, method);
 addDocumentProxy(builder, method, key);
 addComments(builder);
 addSecured(builder, method);
 addCategories(builder, method);
 addUseType(builder, method);
 return builder.build();
}
de.smartics.properties.spi.core.metadataPropertyMetaDataParseraddSecured

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.
  • readPropertySetName
  • <init>
    Default constructor to generate property descriptors with comments.
  • addCategories
  • addCategoriesFromAnnotation
  • addComments
  • addConstraints
  • addDocumentProxy
  • addExpression
  • addLifecycle
  • addExpression,
  • addLifecycle,
  • addUseType,
  • addValueRange,
  • calcElementConstraintMethod,
  • calcElementConstraints,
  • calcElementType,
  • calcElementsConstraintsType,
  • calcPropertyName

Popular in Java

  • Finding current android device location
  • getApplicationContext (Context)
  • getSharedPreferences (Context)
  • getSupportFragmentManager (FragmentActivity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • 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