Package net.sourceforge.pmd.properties

Examples of net.sourceforge.pmd.properties.StringProperty


   protected final Map< String, PropertyDescriptor > propertiesByName()
   {
      final Map< String, PropertyDescriptor > properties = new LinkedHashMap< String, PropertyDescriptor >();

      properties.put( PREFIX_NAME,
                      new StringProperty( PREFIX_NAME, "", DEFAULT_PREFIX, properties.size() ) );
      properties.put( SUFFIX_NAME,
                      new StringProperty( SUFFIX_NAME, "", DEFAULT_SUFFIX, properties.size() ) );

      return properties;
   }
View Full Code Here


   protected final Map< String, PropertyDescriptor > propertiesByName()
   {
      final Map< String, PropertyDescriptor > properties = new LinkedHashMap< String, PropertyDescriptor >();

      properties.put( PROPERTY_NAME,
                      new StringProperty( PROPERTY_NAME, "", "", properties.size() ) );

      return properties;
   }
View Full Code Here

TOP

Related Classes of net.sourceforge.pmd.properties.StringProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.