Uses of Interface
de.smartics.properties.api.core.domain.PropertyDescriptor

Packages that use PropertyDescriptor
de.smartics.properties.api.config.domain Provides domain objects for configuration. 
de.smartics.properties.api.core.domain Provides property domain objects and exceptions. 
de.smartics.properties.api.core.security Provides security mechanisms to protect property values. 
de.smartics.properties.impl.config.cache Provides a ConfigurationPropertiesManagement implementation that provides a cache. 
de.smartics.properties.report.data Provides classes that represent report data. 
de.smartics.properties.security.esapi Provides a security implementation to en- and decrypt property values based on OWASP ESAPI
de.smartics.properties.spi.config.domain Provides domain objects for configuration. 
de.smartics.properties.spi.config.support Provides helpers for service provider to implement ConfigurationPropertiesFactory
de.smartics.properties.spi.config.validation Provides validation utilities. 
de.smartics.properties.spi.core.constraint Provides information about property values constraints. 
de.smartics.properties.spi.core.context Provides properties configuration information. 
de.smartics.properties.spi.core.convert Provides utilities to convert property values from and to Strings. 
de.smartics.properties.spi.core.metadata Provides helpers to read metadata from property descriptor interfaces. 
de.smartics.properties.spi.core.metadata.comment Provides helpers to read comments for property sets, properties and property values. 
de.smartics.properties.spi.core.metadata.projectdoc Provides helpers for projectdoc information. 
de.smartics.properties.spi.core.registry Provides registries to access properties meta information. 
de.smartics.properties.spi.core.validate Service provider validation classes. 
 

Uses of PropertyDescriptor in de.smartics.properties.api.config.domain
 

Methods in de.smartics.properties.api.config.domain that return PropertyDescriptor
 PropertyDescriptor PropertyDefinition.getDescriptor()
          Returns the descriptor of the property.
 PropertyDescriptor DescribedProperty.getDescriptor()
          Returns the descriptor to the property to access property metadata.
 PropertyDescriptor ConfigurationPropertiesManagement.getDescriptor(PropertyKey key)
          Returns the descriptor for the given key.
 PropertyDescriptor ConfigurationPropertiesManagement.getDescriptor(String key)
          Returns the descriptor for the given key.
 

Methods in de.smartics.properties.api.config.domain that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> ConfigurationValidationException.getMandatoryProperties()
          Returns the list of mandatory properties for which no value has been provided.
 List<PropertyDescriptor> ConfigurationPropertiesManagement.getMandatoryPropertyDescriptors()
          Returns the list of mandatory properties.
 

Methods in de.smartics.properties.api.config.domain with parameters of type PropertyDescriptor
 PropertyContext ConfigurationProperties.getContext(PropertyDescriptor descriptor)
          Returns the properties context the property described by the given descriptor is part of.
 DescribedProperty ConfigurationProperties.getProperty(PropertyDescriptor descriptor)
          Returns the property for the given descriptor.
 DescribedProperty ConfigurationProperties.getProperty(PropertyDescriptor descriptor, Object defaultValue)
          Returns the property for the given descriptor, allowing to transparently provide a default value to be returned in case the property has not been set.
 Object ConfigurationProperties.getPropertyAsType(PropertyDescriptor descriptor)
          Returns the yet not validated property for the given descriptor's key.
 Object ConfigurationProperties.getPropertyValue(PropertyDescriptor descriptor)
          Returns the property value for the given descriptor.
 Object ConfigurationProperties.getPropertyValue(PropertyDescriptor descriptor, Object defaultValue)
          Returns the property value for the given descriptor, allowing to transparently provide a default value to be returned in case the property has not been set.
 String ConfigurationProperties.getPropertyValueAsString(PropertyDescriptor descriptor)
          Returns the property string value for the given descriptor.
 String ConfigurationProperties.getPropertyValueAsString(PropertyDescriptor descriptor, Object defaultValue)
          Returns the property string value for the given descriptor.
 ValidatedProperty ConfigurationProperties.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
          Returns the validated property for the given descriptor's key, allowing to transparently provide a default value to be returned in case the property has not been set.
 void PropertyIndex.register(PropertyDescriptor descriptor, Property property)
          Registers the property descriptor and property instance to the index.
 void ConfigurationProperties.validate(PropertyDescriptor descriptor, Class<?>... ifInOneOfTheseGroups)
          Validates the given property in the given configuration.
 void ConfigurationProperties.validate(PropertyDescriptor descriptor, String value, Class<?>... ifInOneOfTheseGroups)
          Validates the given property in the given configuration.
 

Constructors in de.smartics.properties.api.config.domain with parameters of type PropertyDescriptor
DescribedProperty(ConfigurationKey<?> configurationKey, PropertyDescriptor descriptor, Property property)
          Default constructor.
PropertyDefinition(PropertyDescriptor descriptor, Property property)
          Default constructor.
 

Constructor parameters in de.smartics.properties.api.config.domain with type arguments of type PropertyDescriptor
ConfigurationValidationException(ConfigurationKey<?> key, List<PropertyException> propertyViolations, List<PropertyDescriptor> mandatoryProperties, UnknownProperties unknownProperties)
          Convenience constructor without root cause.
ConfigurationValidationException(Throwable cause, ConfigurationKey<?> key, List<PropertyException> propertyViolations, List<PropertyDescriptor> mandatoryProperties, UnknownProperties unknownProperties)
          Default Constructor.
 

Uses of PropertyDescriptor in de.smartics.properties.api.core.domain
 

Methods in de.smartics.properties.api.core.domain that return PropertyDescriptor
 PropertyDescriptor PropertyDescriptorRegistry.get(String key)
          Returns the descriptor for the given key or null if no descriptor is registered for the given key.
 PropertyDescriptor PropertyDescriptorClashingMessageBean.getClashingDescriptor()
          Returns the clashing property descriptor with the same key.
 PropertyDescriptor PropertyDescriptorMessageBean.getPropertyDescriptor()
          Returns the descriptor of the property raising the exception.
 

Methods in de.smartics.properties.api.core.domain that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> PropertyDescriptorRegistry.createMandatoryProperties()
          Returns the list of mandatory properties.
 List<? extends PropertyDescriptor> PropertyDescriptorRegistry.get(Class<?> propertySet)
          Returns the descriptors for the given descriptor type.
 

Methods in de.smartics.properties.api.core.domain with parameters of type PropertyDescriptor
 String PropertiesContext.createMetaInfPath(PropertyDescriptor descriptor)
          Returns the URL to the XML report in the META-INF directory of the given descriptor.
 String PropertiesContext.createMetaInfPath(PropertyDescriptor descriptor, Locale locale)
          Returns the URL to the XML report in the META-INF directory of the given descriptor.
 String PropertiesContext.createMetaInfPathPropertySet(PropertyDescriptor descriptor)
          Returns the URL to the property set XML report in the META-INF directory of the given descriptor.
 String PropertiesContext.createMetaInfPathPropertySet(PropertyDescriptor descriptor, Locale locale)
          Returns the URL to the property set XML report in the META-INF directory of the given descriptor.
 String PropertiesContext.createReportUrl(PropertyDescriptor descriptor)
          Returns the URL to the report documentation for the given descriptor.
 PropertiesContext PropertyDescriptorRegistry.getContext(PropertyDescriptor descriptor)
          Returns the property context for the given property descriptor.
 String PropertyDescriptorRegistry.getDocumentationUrl(PropertyDescriptor descriptor)
          Returns the URL to the documentation report for the given property descriptor.
 String PropertyDescriptorRegistry.getMetaInfPath(PropertyDescriptor descriptor)
          Returns the path to the context information for the given property descriptor.
static PropertyValidationException PropertyValidationException.invalid(PropertyDescriptor propertyDescriptor, List<? extends PropertyConstraint<?>> constraints, Object value)
          Creates an instance of the validation exception.
 void PropertyConstraint.validate(PropertyDescriptor propertyDescriptor, T value)
          Checks if the given value is valid for constraints in the default group.
 void PropertyConstraint.validate(PropertyDescriptor propertyDescriptor, T value, Class<?> group)
          Checks if the given value is valid.
 

Method parameters in de.smartics.properties.api.core.domain with type arguments of type PropertyDescriptor
 void PropertyDescriptorRegistry.addDescriptors(Class<?> propertySetType, List<PropertyDescriptor> descriptors)
          Adds the descriptors to the given declaring type.
 

Constructors in de.smartics.properties.api.core.domain with parameters of type PropertyDescriptor
PropertyDescriptorClashingMessageBean(PropertyCode code, PropertyDescriptor propertyDescriptor, PropertyDescriptor clashingDescriptor)
          Convenience constructor with no root cause.
PropertyDescriptorClashingMessageBean(PropertyCode code, Throwable cause, PropertyDescriptor propertyDescriptor, PropertyDescriptor clashingDescriptor)
          Default constructor.
PropertyDescriptorMessageBean(PropertiesCode code, Throwable cause, PropertyDescriptor propertyDescriptor)
          Default constructor.
PropertyExpressionMessageBean(PropertiesCode code, Throwable cause, PropertyDescriptor propertyDescriptor, String expression)
          Default constructor.
PropertyExpressionMessageBean(PropertyDescriptor propertyDescriptor, String expression)
          Convenience constructor with no message and no root cause.
PropertyExpressionMessageBean(Throwable cause, PropertyDescriptor propertyDescriptor, String expression)
          Convenience constructor with cause.
PropertyValidationMessageBean(PropertiesCode code, Throwable cause, PropertyDescriptor propertyDescriptor, List<? extends PropertyConstraint<?>> constraints, Object value)
          Default constructor.
PropertyValidationMessageBean(PropertyDescriptor propertyDescriptor, List<? extends PropertyConstraint<?>> constraints, Object value)
          Convenience constructor with no message and no root cause.
PropertyValidationMessageBean(Throwable cause, PropertyDescriptor propertyDescriptor, List<? extends PropertyConstraint<?>> constraints, Object value)
          Convenience constructor with cause.
PropertyValueChangeMessageBean(PropertyCode code, PropertyDescriptor propertyDescriptor, Object currentValue, Object rejectedValue)
          Default constructor.
PropertyValueMessageBean(PropertiesCode code, Throwable cause, PropertyDescriptor propertyDescriptor, Object value)
          Default constructor.
PropertyValueMessageBean(PropertyDescriptor propertyDescriptor, Object value)
          Convenience constructor with no message and no root cause.
PropertyValueMessageBean(Throwable cause, PropertyDescriptor propertyDescriptor, Object value)
          Convenience constructor with cause.
 

Uses of PropertyDescriptor in de.smartics.properties.api.core.security
 

Methods in de.smartics.properties.api.core.security with parameters of type PropertyDescriptor
protected  Cipher SystemPropertyBasedPropertyValueSecurity.createCipher(PropertyDescriptor descriptor)
          Creates the cipher instance.
protected  SecretKey SystemPropertyBasedPropertyValueSecurity.createKey(PropertyDescriptor descriptor)
          Creates the symmetric key instance.
 String SystemPropertyBasedPropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue)
           
 String PropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue)
          Decrypts the given property value.
 String PropertiesBasedPropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue)
           
 String Base64PropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue)
           
protected  String AbstractPropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue, SecretKey key, Cipher cipher)
          Decrypts the given property value.
 String SystemPropertyBasedPropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue)
           
 String PropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue)
          Encrypts the given property value.
 String PropertiesBasedPropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue)
           
 String Base64PropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue)
           
protected  String AbstractPropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue, SecretKey key, Cipher cipher)
          Encrypts the given property value.
 

Uses of PropertyDescriptor in de.smartics.properties.impl.config.cache
 

Methods in de.smartics.properties.impl.config.cache that return PropertyDescriptor
 PropertyDescriptor AbstractCacheConfigurationPropertiesManagement.getDescriptor(PropertyKey key)
           
 PropertyDescriptor AbstractCacheConfigurationPropertiesManagement.getDescriptor(String key)
           
 

Methods in de.smartics.properties.impl.config.cache that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> AbstractCacheConfigurationPropertiesManagement.getMandatoryPropertyDescriptors()
           
 

Methods in de.smartics.properties.impl.config.cache with parameters of type PropertyDescriptor
 PropertyContext AbstractCacheConfigurationPropertiesManagement.getContext(PropertyDescriptor descriptor)
           
 DescribedProperty AbstractCacheConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor)
           
 DescribedProperty AbstractCacheConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 Object AbstractCacheConfigurationPropertiesManagement.getPropertyAsType(PropertyDescriptor descriptor)
           
 Object AbstractCacheConfigurationPropertiesManagement.getPropertyValue(PropertyDescriptor descriptor)
           
 Object AbstractCacheConfigurationPropertiesManagement.getPropertyValue(PropertyDescriptor descriptor, Object defaultValue)
           
 String AbstractCacheConfigurationPropertiesManagement.getPropertyValueAsString(PropertyDescriptor descriptor)
           
 String AbstractCacheConfigurationPropertiesManagement.getPropertyValueAsString(PropertyDescriptor descriptor, Object defaultValue)
           
 ValidatedProperty AbstractCacheConfigurationPropertiesManagement.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 void AbstractCacheConfigurationPropertiesManagement.validate(PropertyDescriptor descriptor, Class<?>... ifInOneOfTheseGroups)
           
 void AbstractCacheConfigurationPropertiesManagement.validate(PropertyDescriptor descriptor, String value, Class<?>... ifInOneOfTheseGroups)
           
 

Uses of PropertyDescriptor in de.smartics.properties.report.data
 

Methods in de.smartics.properties.report.data that return PropertyDescriptor
 PropertyDescriptor PropertyReportItem.getDescriptor()
          Returns the descriptor to the property.
 

Methods in de.smartics.properties.report.data with parameters of type PropertyDescriptor
 PropertyReportItem.Builder PropertyReportItem.Builder.with(PropertyDescriptor descriptor)
          Sets the descriptor to the property.
 

Uses of PropertyDescriptor in de.smartics.properties.security.esapi
 

Methods in de.smartics.properties.security.esapi with parameters of type PropertyDescriptor
 String AbstractEsapiPropertyValueSecurity.decrypt(PropertyDescriptor descriptor, String encryptedValue)
           
 String AbstractEsapiPropertyValueSecurity.encrypt(PropertyDescriptor descriptor, String plainValue)
           
 

Uses of PropertyDescriptor in de.smartics.properties.spi.config.domain
 

Methods in de.smartics.properties.spi.config.domain that return PropertyDescriptor
 PropertyDescriptor ConfigurationPropertiesManagementProxy.getDescriptor(PropertyKey key)
           
 PropertyDescriptor ConfigurationPropertiesManagementProxy.getDescriptor(String key)
           
 

Methods in de.smartics.properties.spi.config.domain that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> ConfigurationPropertiesManagementProxy.getMandatoryPropertyDescriptors()
           
 

Methods in de.smartics.properties.spi.config.domain with parameters of type PropertyDescriptor
 PropertyContext ConfigurationPropertiesProxy.getContext(PropertyDescriptor descriptor)
           
 DescribedProperty ConfigurationPropertiesProxy.getProperty(PropertyDescriptor descriptor)
           
 DescribedProperty ConfigurationPropertiesProxy.getProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 Object ConfigurationPropertiesProxy.getPropertyAsType(PropertyDescriptor descriptor)
           
 Object ConfigurationPropertiesProxy.getPropertyValue(PropertyDescriptor descriptor)
           
 Object ConfigurationPropertiesProxy.getPropertyValue(PropertyDescriptor descriptor, Object defaultValue)
           
 String ConfigurationPropertiesProxy.getPropertyValueAsString(PropertyDescriptor descriptor)
           
 String ConfigurationPropertiesProxy.getPropertyValueAsString(PropertyDescriptor descriptor, Object defaultValue)
           
 ValidatedProperty ConfigurationPropertiesProxy.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 void ConfigurationPropertiesProxy.validate(PropertyDescriptor descriptor, Class<?>... ifInOneOfTheseGroups)
           
 void ConfigurationPropertiesProxy.validate(PropertyDescriptor descriptor, String value, Class<?>... ifInOneOfTheseGroups)
           
 

Uses of PropertyDescriptor in de.smartics.properties.spi.config.support
 

Methods in de.smartics.properties.spi.config.support that return PropertyDescriptor
 PropertyDescriptor ConfigurationPropertiesManagementWithDefaults.getDescriptor(PropertyKey key)
           
 PropertyDescriptor AbstractConfigurationPropertiesManagement.getDescriptor(PropertyKey key)
           
 PropertyDescriptor ConfigurationPropertiesManagementWithDefaults.getDescriptor(String key)
           
 PropertyDescriptor AbstractConfigurationPropertiesManagement.getDescriptor(String key)
           
protected  PropertyDescriptor AbstractConfigurationProperties.getPropertyDescriptor(String key)
          Returns the property descriptor for a given key.
 

Methods in de.smartics.properties.spi.config.support that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> ConfigurationPropertiesManagementWithDefaults.getMandatoryPropertyDescriptors()
           
 List<PropertyDescriptor> AbstractConfigurationPropertiesManagement.getMandatoryPropertyDescriptors()
           
 

Methods in de.smartics.properties.spi.config.support with parameters of type PropertyDescriptor
 PropertyContext AbstractConfigurationProperties.getContext(PropertyDescriptor descriptor)
           
 DescribedProperty AbstractConfigurationProperties.getProperty(PropertyDescriptor descriptor)
           
 DescribedProperty ConfigurationPropertiesManagementWithDefaults.getProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 DescribedProperty AbstractConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 Object ConfigurationPropertiesManagementWithDefaults.getPropertyAsType(PropertyDescriptor descriptor)
           
 Object AbstractConfigurationPropertiesManagement.getPropertyAsType(PropertyDescriptor descriptor)
           
 Object AbstractConfigurationProperties.getPropertyValue(PropertyDescriptor descriptor)
           
 Object AbstractConfigurationProperties.getPropertyValue(PropertyDescriptor descriptor, Object defaultValue)
           
 String AbstractConfigurationProperties.getPropertyValueAsString(PropertyDescriptor descriptor)
           
 String AbstractConfigurationProperties.getPropertyValueAsString(PropertyDescriptor descriptor, Object defaultValue)
           
 ValidatedProperty ConfigurationPropertiesManagementWithDefaults.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
           
 ValidatedProperty AbstractConfigurationPropertiesManagement.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
           
protected  Object AbstractConfigurationProperties.resolveAndConvert(PropertyDescriptor descriptor, Object value, Object defaultValue)
          Resolves and converts the given value.
protected  Object AbstractConfigurationProperties.resolveAndConvertAndValidate(PropertyDescriptor descriptor, Object defaultValue, Object value)
          Resolves, converts and validates the given value.
 void ConfigurationPropertiesManagementWithDefaults.validate(PropertyDescriptor descriptor, Class<?>... groups)
           
 void AbstractConfigurationPropertiesManagement.validate(PropertyDescriptor descriptor, Class<?>... ifInOneOfTheseGroups)
           
 void AbstractConfigurationProperties.validate(PropertyDescriptor descriptor, Object value, Class<?>... ifInOneOfTheseGroups)
          Validates the given value for the given property.
 void ConfigurationPropertiesManagementWithDefaults.validate(PropertyDescriptor descriptor, String value, Class<?>... groups)
           
 void AbstractConfigurationPropertiesManagement.validate(PropertyDescriptor descriptor, String value, Class<?>... ifInOneOfTheseGroups)
           
 

Method parameters in de.smartics.properties.spi.config.support with type arguments of type PropertyDescriptor
 void FactoryCache.registerDescriptors(Map<Class<?>,List<PropertyDescriptor>> descriptorMap)
          Registers the list of descriptors to the given declaring types.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.config.validation
 

Methods in de.smartics.properties.spi.config.validation with parameters of type PropertyDescriptor
 void ConfigurationValidator.validate(PropertyDescriptor descriptor, Object value, Class<?>... groups)
          Validates the given value for the given descriptor and groups.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.constraint
 

Methods in de.smartics.properties.spi.core.constraint with parameters of type PropertyDescriptor
 void AbstractPropertyConstraint.validate(PropertyDescriptor propertyDescriptor, T value)
           
 void AbstractPropertyConstraint.validate(PropertyDescriptor propertyDescriptor, T value, Class<?> group)
           
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.context
 

Methods in de.smartics.properties.spi.core.context with parameters of type PropertyDescriptor
 PropertyContext PropertyContextProxy.getPropertyContext(PropertyDescriptor propertyDescriptor)
           
 PropertyContext PropertyContextProvider.getPropertyContext(PropertyDescriptor propertyDescriptor)
          Creates a new property context for the given propertyDescriptor.
 

Constructors in de.smartics.properties.spi.core.context with parameters of type PropertyDescriptor
MandatoryPropertyContext(PropertiesContext propertiesContext, PropertyDescriptor descriptor)
          Default constructor.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.convert
 

Methods in de.smartics.properties.spi.core.convert that return PropertyDescriptor
 PropertyDescriptor ListPropertyHelper.getDescriptor()
          Returns the list descriptor to analyze.
 

Methods in de.smartics.properties.spi.core.convert with parameters of type PropertyDescriptor
 Object PropertyValueConverter.convert(PropertyDescriptor descriptor, Object value)
          Converts, if necessary, the given value to the target type defined by the descriptor.
 Object BeanUtilsPropertyValueConverter.convert(PropertyDescriptor descriptor, Object value)
           
 

Constructors in de.smartics.properties.spi.core.convert with parameters of type PropertyDescriptor
ListPropertyHelper(PropertyDescriptor descriptor)
          Default constructor.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.metadata
 

Classes in de.smartics.properties.spi.core.metadata that implement PropertyDescriptor
 class PropertyMetaData
          An implementation of the property descriptor interface that allows to set property meta data.
 

Methods in de.smartics.properties.spi.core.metadata that return PropertyDescriptor
 PropertyDescriptor PropertyMetaDataParser.readDescriptor(Method method)
          Reads the property descriptor information from the method.
 

Methods in de.smartics.properties.spi.core.metadata that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> PropertyMetaDataParser.readDescriptors(Class<?> propertySetType)
          Reads the property descriptor information from the type.
 

Methods in de.smartics.properties.spi.core.metadata with parameters of type PropertyDescriptor
 PropertyComment PropertyCommentProxy.getComment(PropertyDescriptor propertyDescriptor, Locale locale)
          Returns the comment for the given property descriptor.
 PropertyComment PropertyCommentProvider.getComment(PropertyDescriptor propertyDescriptor, Locale locale)
          Returns the comment for the given property descriptor.
 PropertyProjectdoc MetaInfDocumentMetaDataProxy.getProjectdocProperty(PropertyDescriptor descriptor, Locale locale)
           
 PropertyProjectdoc DocumentMetaDataProxy.getProjectdocProperty(PropertyDescriptor descriptor, Locale locale)
          Returns the projectdoc information.
 PropertySetProjectdoc MetaInfDocumentMetaDataProxy.getProjectdocPropertySet(PropertyDescriptor descriptor, Locale locale)
           
 PropertySetProjectdoc DocumentMetaDataProxy.getProjectdocPropertySet(PropertyDescriptor descriptor, Locale locale)
          Returns the projectdoc information for property sets.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.metadata.comment
 

Methods in de.smartics.properties.spi.core.metadata.comment with parameters of type PropertyDescriptor
 PropertyComment PropertyCommentParser.parse(PropertyDescriptor descriptor, Locale locale)
          Parses the comments for the given descriptor.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.metadata.projectdoc
 

Methods in de.smartics.properties.spi.core.metadata.projectdoc that return PropertyDescriptor
 PropertyDescriptor ProjectdocMetaDataParser.ParserContext.getDescriptor()
          Returns the descriptor whose comments are requested to be parsed.
 

Methods in de.smartics.properties.spi.core.metadata.projectdoc with parameters of type PropertyDescriptor
protected  String PropertySetProjectdocParser.calcPath(PropertyDescriptor descriptor, Locale locale)
           
protected  String PropertyProjectdocParser.calcPath(PropertyDescriptor descriptor, Locale locale)
           
protected abstract  String ProjectdocMetaDataParser.calcPath(PropertyDescriptor descriptor, Locale locale)
          Calculates the path to a resource to be parsed.
 PropertySetProjectdoc PropertySetProjectdocParser.parse(PropertyDescriptor descriptor, Locale locale)
           
 PropertyProjectdoc PropertyProjectdocParser.parse(PropertyDescriptor descriptor, Locale locale)
           
 ProjectdocMetaData ProjectdocMetaDataParser.parse(PropertyDescriptor descriptor, Locale locale)
          Parses the comments for the given descriptor.
protected  void ProjectdocMetaDataParser.parseBase(PropertyDescriptor descriptor, Locale locale, ProjectdocMetaData metaData)
          Parses the comments for the given descriptor.
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.registry
 

Methods in de.smartics.properties.spi.core.registry that return PropertyDescriptor
 PropertyDescriptor InMemoryPropertyDescriptorRegistry.get(String key)
           
 

Methods in de.smartics.properties.spi.core.registry that return types with arguments of type PropertyDescriptor
 List<PropertyDescriptor> InMemoryPropertyDescriptorRegistry.createMandatoryProperties()
           
 List<? extends PropertyDescriptor> InMemoryPropertyDescriptorRegistry.get(Class<?> propertySet)
           
 Iterator<PropertyDescriptor> InMemoryPropertyDescriptorRegistry.iterator()
           
 

Methods in de.smartics.properties.spi.core.registry with parameters of type PropertyDescriptor
 PropertiesContext ConfigurationRegistry.get(PropertyDescriptor descriptor)
          Returns the properties context for the given descriptor.
 PropertiesContext InMemoryPropertyDescriptorRegistry.getContext(PropertyDescriptor descriptor)
           
 String InMemoryPropertyDescriptorRegistry.getDocumentationUrl(PropertyDescriptor descriptor)
           
 String InMemoryPropertyDescriptorRegistry.getMetaInfPath(PropertyDescriptor descriptor)
           
 

Method parameters in de.smartics.properties.spi.core.registry with type arguments of type PropertyDescriptor
 void InMemoryPropertyDescriptorRegistry.addDescriptors(Class<?> propertySetType, List<PropertyDescriptor> descriptors)
           
 

Uses of PropertyDescriptor in de.smartics.properties.spi.core.validate
 

Methods in de.smartics.properties.spi.core.validate with parameters of type PropertyDescriptor
 void PropertyValidator.validate(PropertyDescriptor descriptor, Object value, Class<?>... groups)
          Validates if the given value meets the constraints defined by the given descriptor.
 



Copyright © 2012-2013 Kronseder & Reiner GmbH - smartics. All Rights Reserved.