vote up 2 vote down star

Hello, i want to create some simple wrapper classes for an existing class library. To make the syntax nice to read AND nice to guess (via code completion) i'd like to remove the methods of java.lang.Object.

The problem is that all non-atomic things in java inherit from Object and thus have these methods. I already tried to create the wrapper syntax via enums and interfaces, without success; because enums and interfaces are also java.lang.Objects.

java.lang.Object has nine methods that i don't want to see in the code completion of my interfaces. Here's what i want to remove (red) and what i want to keep (green):

alt text

Here is some example code for creating nice wrappers around existing classes (Builder pattern):

public interface IMySyntax{
  public IMySyntax myMethod1();
  public IMySyntax myMethod2();
}

public class MyBuilder implements IMySyntax{
  public static IMySyntax build(){ return (IMySyntax) new MyBuilder() }
  public IMySyntax myMethod1(){ /* do something */ return (IMySyntax) this }
  public IMySyntax myMethod2(){ /* do something */ return (IMySyntax) this }     
}

Usage of the new wrapper code should look like this:

MyBuilder.build()
         .myMethod1()
         .myMethod2();

Casting all this statements of the builder to an interface will reduce the method visibility, e.g. if the builder implements more that one interface. All java.lang.Object methods will stay, unfortunately.

If this method hiding was possible in Java (maybe using Annotations?), i could create a nice library that is IDE agnostic (nice code completion everywhere). If not, than maybe there's a trick for at least the Eclipse IDE (maybe a plugin?) that can provide java.lang.Object method hiding.

flag

I think you might want to limit this scope to a particular IDE (like Eclipse). I'm 99% sure that IntelliJ IDE does this right out of the box (i.e. it puts the most relevant methods first). – Outlaw Programmer Feb 23 at 19:43

2 Answers

vote up 6 vote down check

For Eclipse 3.4 at least you can do the following:

1) Go to Preferences -> Java -> Appearance -> Type Filters 2) Click Add, and enter java.lang.Object

Now in code assist, the methods inherited directly from java.lang.Object will dissapear

link|flag
Thx! If nobody comes up with a java based answer very soon, i'll accept this one. – Juve Feb 24 at 7:47
I'd recommend this approach. You can also tell eclipse which types of proposals to use. – Scott Stanchfield Feb 24 at 16:50
vote up -1 vote down

I do not think you can do this from Java. Everything is an object in Java. When you define a class, you implicitly state it is an object and hence it will inherit the java.lang.Object methods. The compiler will not let you reduce the visibility of the methods since you will be changing the basic behavior of the object.

link|flag
This is an IDE issue, not a language issue. If your IDE is smart enough, it can decide which methods best fit the current context. So yes, you can't 'remove' any methods from Object, but you can keep the IDE from displaying them. – Outlaw Programmer Feb 23 at 19:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.