The setters for propertyA do not show up in the structure panel for
abc_class.java, listed below.

- the Group Implementation Methods icon (^I) must be OFF.
- the Show Properties icon must be ON.
- the Show Methods icon must be ON.

The rest of the icons can be anything.

If you open the propertyA:String property in the structure panel for
abc_class.java, you will only see the getter and not the setter.

--- abc_class.java ---
package com.ams.acq.pd.security;
public class abc_class implements abc_interface
{
    public String getPropertyA()
    {
        return null;
    }
    public void setPropertyA(String newPrincipalGUID)
    {
    }
    public void setPropertyB(String newDescription)
    {
    }
}
--- end abc_class.java ---

--- abc_interface.java ---
package com.ams.acq.pd.security;
public interface abc_interface
{
    public String getPropertyA();
    public void setPropertyA(String newPrincipalGUID);
    public void setPropertyB(String newDescription);
}
--- end abc_interface.java ---

Both getPropertyA():String and setPropertyA(String):void show up
properly for the interface.  But for the class, the setter does not show
up.





_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs

Reply via email to