Package org.jboss.util

Examples of org.jboss.util.NullArgumentException


    * @return        True if property map or defaults contains key.
    */
   public boolean containsKey(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.containsKey(makePropertyName(name));
   }
View Full Code Here


    * @return        Previous property value or <tt>null</tt>.
    */
   public Object put(final Object name, final Object value)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.put(makePropertyName(name), value);
   }
View Full Code Here

    * @return        Property value or <tt>null</tt>.
    */
   public Object get(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.get(makePropertyName(name));
   }
View Full Code Here

    * @return        Removed property value.
    */
   public Object remove(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.remove(makePropertyName(name));
   }
View Full Code Here

   public PropertyGroup(final String basename, final Properties container)
   {
      super(container);

      if (basename == null)
         throw new NullArgumentException("basename");

      this.basename = basename;
   }
View Full Code Here

    * @return        True if property map or defaults contains key.
    */
   public boolean containsKey(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.containsKey(makePropertyName(name));
   }
View Full Code Here

    * @return        Previous property value or <tt>null</tt>.
    */
   public Object put(final Object name, final Object value)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.put(makePropertyName(name), value);
   }
View Full Code Here

    * @return        Property value or <tt>null</tt>.
    */
   public Object get(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.get(makePropertyName(name));
   }
View Full Code Here

    * @return        Removed property value.
    */
   public Object remove(final Object name)
   {
      if (name == null)
         throw new NullArgumentException("name");

      return super.remove(makePropertyName(name));
   }
View Full Code Here

   public FieldBoundPropertyListener(final Object instance,
                                     final String fieldName,
                                     final String propertyName)
   {
      if (propertyName == null)
         throw new NullArgumentException("propertyName");
      // FieldInstance checks instance & fieldName

      this.propertyName = propertyName;

      try {
View Full Code Here

TOP

Related Classes of org.jboss.util.NullArgumentException

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.