org.codehaus.groovy.ant
Class AntProjectPropertiesDelegate

java.lang.Object
  extended byjava.util.Dictionary
      extended byjava.util.Hashtable
          extended byorg.codehaus.groovy.ant.AntProjectPropertiesDelegate
All Implemented Interfaces:
Cloneable, Map, Serializable

public class AntProjectPropertiesDelegate
extends Hashtable

Author:
Guillaume Laforge
See Also:
Serialized Form

Constructor Summary
AntProjectPropertiesDelegate(Map t)
           
AntProjectPropertiesDelegate(org.apache.tools.ant.Project project)
           
 
Method Summary
 void clear()
           
 Object clone()
           
 boolean contains(Object value)
           
 boolean containsKey(Object key)
           
 boolean containsValue(Object value)
           
 Enumeration elements()
           
 Set entrySet()
           
 boolean equals(Object o)
           
 Object get(Object key)
           
 int hashCode()
           
 boolean isEmpty()
           
 Enumeration keys()
           
 Set keySet()
           
 Object put(Object key, Object value)
           
 void putAll(Map t)
           
 Object remove(Object key)
           
 int size()
           
 String toString()
           
 Collection values()
           
 
Methods inherited from class java.util.Hashtable
rehash
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AntProjectPropertiesDelegate

public AntProjectPropertiesDelegate(org.apache.tools.ant.Project project)

AntProjectPropertiesDelegate

public AntProjectPropertiesDelegate(Map t)
Method Detail

hashCode

public int hashCode()

size

public int size()

clear

public void clear()
Throws:
UnsupportedOperationException - is always thrown when this method is invoked. The Project properties are immutable.

isEmpty

public boolean isEmpty()

clone

public Object clone()

contains

public boolean contains(Object value)

containsKey

public boolean containsKey(Object key)

containsValue

public boolean containsValue(Object value)

equals

public boolean equals(Object o)

toString

public String toString()

values

public Collection values()

elements

public Enumeration elements()

keys

public Enumeration keys()

putAll

public void putAll(Map t)

entrySet

public Set entrySet()

keySet

public Set keySet()

get

public Object get(Object key)

remove

public Object remove(Object key)
Throws:
UnsupportedOperationException - is always thrown when this method is invoked. The Project properties are immutable.

put

public Object put(Object key,
                  Object value)


Copyright © 2003-2007 The Codehaus. All Rights Reserved.