Package net.sourceforge.pmd.properties
Class TypeProperty
- java.lang.Object
-
- net.sourceforge.pmd.properties.TypeProperty
-
- All Implemented Interfaces:
Comparable<PropertyDescriptor<?>>,PackagedPropertyDescriptor<Class>,PropertyDescriptor<Class>,SingleValuePropertyDescriptor<Class>
@Deprecated public final class TypeProperty extends Object
Deprecated.Will be removed with 7.0.0 with no scheduled replacement yetDefines a property that supports single class types, even for primitive values! TODO - untested for array types- Author:
- Brian Remedios
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTypeProperty.TypePBuilderDeprecated.
-
Field Summary
Fields Modifier and Type Field Description protected PackagedPropertyModule<T>moduleDeprecated.-
Fields inherited from interface net.sourceforge.pmd.properties.PackagedPropertyDescriptor
MULTI_VALUE_DELIMITER, PACKAGE_NAME_DELIMITER
-
-
Constructor Summary
Constructors Constructor Description TypeProperty(String theName, String theDescription, Class<?> theDefault, String[] legalPackageNames, float theUIOrder)Deprecated.Constructor for TypeProperty.TypeProperty(String theName, String theDescription, String defaultTypeStr, String[] legalPackageNames, float theUIOrder)Deprecated.will be removed in 7.0.0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidaddAttributesTo(Map<PropertyDescriptorField,String> attributes)Deprecated.Adds this property's attributes to the map.StringasDelimitedString(T value)Deprecated.Formats the object onto a string suitable for storage within the property map.protected StringasString(Class value)Deprecated.Returns a string representation of the value, even if it's null.Map<PropertyDescriptorField,String>attributeValuesById()Returns a map representing all the property attributes of the receiver in string form.intcompareTo(PropertyDescriptor<?> otherProperty)Class<?>createFrom(String valueString)Deprecated.Parse a string and returns an instance of a value.protected StringdefaultAsString()Deprecated.Returns a string representation of the default value.TdefaultValue()Deprecated.Default value to use when the user hasn't specified one or when they wish to revert to a known-good state.Stringdescription()Describes the property and the role it plays within the rule it is specified for.booleanequals(Object obj)StringerrorFor(T value)Deprecated.Validation function that returns a diagnostic error message for a sample property value.inthashCode()booleanisDefinedExternally()True if this descriptor was defined in the ruleset xml.booleanisMultiValue()Deprecated.Returns whether the property is multi-valued, i.e.String[]legalPackageNames()Deprecated.Returns the legal package names.Stringname()The name of the property without spaces as it serves as the key into the property map.static TypeProperty.TypePBuildernamed(String name)Deprecated.protected String[]packageNamesIn(Map<PropertyDescriptorField,String> params)Deprecated.intpreferredRowCount()If the datatype is a String then return the preferred number of rows to allocate in the text widget, returns a value of one for all other types.StringpropertyErrorFor(Rule rule)Deprecated.A convenience method that returns an error string if the rule holds onto a property value that has a problem.StringtoString()Class<Class>type()Deprecated.Denotes the value datatype.floatuiOrder()Denotes the relative order the property field should occupy if we are using an auto-generated UI to display and edit property values.protected StringvalueErrorFor(T value)Deprecated.Checks the value for an error.TvalueFrom(String valueString)Deprecated.Returns the value represented by this string.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sourceforge.pmd.properties.PropertyDescriptor
asDelimitedString, attributeValuesById, compareTo, defaultValue, description, errorFor, isDefinedExternally, isMultiValue, name, preferredRowCount, propertyErrorFor, uiOrder, valueFrom
-
-
-
-
Field Detail
-
module
protected final PackagedPropertyModule<T> module
Deprecated.
-
-
Constructor Detail
-
TypeProperty
public TypeProperty(String theName, String theDescription, String defaultTypeStr, String[] legalPackageNames, float theUIOrder)
Deprecated.will be removed in 7.0.0Constructor for TypeProperty using a string as default value.- Parameters:
theName- StringtheDescription- StringdefaultTypeStr- StringlegalPackageNames- String[]theUIOrder- float- Throws:
IllegalArgumentException- if the default string could not be parsed into a Class
-
TypeProperty
public TypeProperty(String theName, String theDescription, Class<?> theDefault, String[] legalPackageNames, float theUIOrder)
Deprecated.Constructor for TypeProperty.- Parameters:
theName- StringtheDescription- StringtheDefault- ClasslegalPackageNames- String[]theUIOrder- float
-
-
Method Detail
-
type
public Class<Class> type()
Deprecated.Description copied from interface:PropertyDescriptorDenotes the value datatype. For multi value properties, this is not the List class but the list's component class.- Returns:
- Class literal of the value type
-
asString
protected String asString(Class value)
Deprecated.Returns a string representation of the value, even if it's null.- Parameters:
value- The value to describe- Returns:
- A string representation of the value
-
createFrom
public Class<?> createFrom(String valueString)
Deprecated.Parse a string and returns an instance of a value.- Parameters:
valueString- String to parse- Returns:
- An instance of a value
-
named
public static TypeProperty.TypePBuilder named(String name)
Deprecated.
-
addAttributesTo
protected void addAttributesTo(Map<PropertyDescriptorField,String> attributes)
Deprecated.Adds this property's attributes to the map. Subclasses can override this to add morePropertyDescriptorField.- Parameters:
attributes- The map to fill
-
valueErrorFor
protected String valueErrorFor(T value)
Deprecated.Checks the value for an error.- Parameters:
value- Value to check- Returns:
- A diagnostic error message, or null if there's no problem
-
legalPackageNames
public String[] legalPackageNames()
Deprecated.Description copied from interface:PackagedPropertyDescriptorReturns the legal package names.- Specified by:
legalPackageNamesin interfacePackagedPropertyDescriptor<T>- Returns:
- The legal package names
-
packageNamesIn
protected String[] packageNamesIn(Map<PropertyDescriptorField,String> params)
Deprecated.
-
defaultValue
public final T defaultValue()
Deprecated.Description copied from interface:PropertyDescriptorDefault value to use when the user hasn't specified one or when they wish to revert to a known-good state.- Specified by:
defaultValuein interfacePropertyDescriptor<T>- Returns:
- Object
-
isMultiValue
public final boolean isMultiValue()
Deprecated.Description copied from interface:PropertyDescriptorReturns whether the property is multi-valued, i.e. an array of strings,As unary property rule properties will return a value of one, you must use the get/setProperty accessors when working with the actual values. When working with multi-value properties then the get/setProperties accessors must be used.
- Specified by:
isMultiValuein interfacePropertyDescriptor<T>- Returns:
- boolean
-
asDelimitedString
public String asDelimitedString(T value)
Deprecated.Description copied from interface:PropertyDescriptorFormats the object onto a string suitable for storage within the property map.- Specified by:
asDelimitedStringin interfacePropertyDescriptor<T>- Parameters:
value- Object- Returns:
- String
-
propertyErrorFor
public String propertyErrorFor(Rule rule)
Deprecated.Description copied from interface:PropertyDescriptorA convenience method that returns an error string if the rule holds onto a property value that has a problem. Returns null otherwise.- Specified by:
propertyErrorForin interfacePropertyDescriptor<T>- Parameters:
rule- Rule- Returns:
- String
-
errorFor
public String errorFor(T value)
Deprecated.Description copied from interface:PropertyDescriptorValidation function that returns a diagnostic error message for a sample property value. Returns null if the value is acceptable.- Specified by:
errorForin interfacePropertyDescriptor<T>- Parameters:
value- The value to check.- Returns:
- A diagnostic message.
-
defaultAsString
protected final String defaultAsString()
Deprecated.Returns a string representation of the default value.- Returns:
- A string representation of the default value.
-
valueFrom
public final T valueFrom(String valueString) throws IllegalArgumentException
Deprecated.Description copied from interface:PropertyDescriptorReturns the value represented by this string.- Specified by:
valueFromin interfacePropertyDescriptor<T>- Parameters:
valueString- The string to parse- Returns:
- The value represented by the string
- Throws:
IllegalArgumentException- if the given string cannot be parsed
-
description
public String description()
Description copied from interface:PropertyDescriptorDescribes the property and the role it plays within the rule it is specified for. Could be used in a tooltip.- Specified by:
descriptionin interfacePropertyDescriptor<T>- Returns:
- String
-
uiOrder
public float uiOrder()
Description copied from interface:PropertyDescriptorDenotes the relative order the property field should occupy if we are using an auto-generated UI to display and edit property values. If the value returned has a non-zero fractional part then this is can be used to place adjacent fields on the same row.- Specified by:
uiOrderin interfacePropertyDescriptor<T>- Returns:
- The relative order compared to other properties of the same rule
-
compareTo
public final int compareTo(PropertyDescriptor<?> otherProperty)
- Specified by:
compareToin interfaceComparable<T>- Specified by:
compareToin interfacePropertyDescriptor<T>
-
preferredRowCount
public int preferredRowCount()
Description copied from interface:PropertyDescriptorIf the datatype is a String then return the preferred number of rows to allocate in the text widget, returns a value of one for all other types. Useful for multi-line XPATH editors.- Specified by:
preferredRowCountin interfacePropertyDescriptor<T>- Returns:
- int
-
name
public String name()
Description copied from interface:PropertyDescriptorThe name of the property without spaces as it serves as the key into the property map.- Specified by:
namein interfacePropertyDescriptor<T>- Returns:
- String
-
attributeValuesById
public final Map<PropertyDescriptorField,String> attributeValuesById()
Description copied from interface:PropertyDescriptorReturns a map representing all the property attributes of the receiver in string form.- Specified by:
attributeValuesByIdin interfacePropertyDescriptor<T>- Returns:
- map
-
isDefinedExternally
public boolean isDefinedExternally()
Description copied from interface:PropertyDescriptorTrue if this descriptor was defined in the ruleset xml. This precision is necessary for theRuleSetWriterto write out the property correctly: if it was defined externally, then its definition must be written out, otherwise only its value.- Specified by:
isDefinedExternallyin interfacePropertyDescriptor<T>- Returns:
- True if the descriptor was defined in xml
-
-