Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey 2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions

View file

@ -181,7 +181,7 @@ public class Encoder
return exceptionListener;
}
public PersistenceDelegate getPersistenceDelegate(Class type)
public PersistenceDelegate getPersistenceDelegate(Class<?> type)
{
// This is not specified but the JDK behaves like this.
if (type == null)
@ -215,7 +215,8 @@ public class Encoder
* access is thread safe.
* </p>
*/
public void setPersistenceDelegate(Class type, PersistenceDelegate delegate)
public void setPersistenceDelegate(Class<?> type,
PersistenceDelegate delegate)
{
// If the argument is null this will cause a NullPointerException
// which is expected behavior.