Bugs item #796261, was opened at 2003-08-27 15:50
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=796261&group_id=44253
Category: Interactions
Group: Serious
Status: Open
Resolution: None
Priority: 6
Submitted By: James Hsia (jhsia)
Assigned to: James Hsia (jhsia)
Summary: Multiple access modifiers allowed in Interactions
Initial Comment:
Any method or field declarared in the Interactions Pane
with multiple access modifiers will be accepted, with
the modifier appearing last actually used.
For example, typing:
class Foo {
public public protected private int bar = 5;
private protected public int foo() {
return bar;
}
}
into the Interactions Pane will be accepted and cause
the call:
new Foo().foo()
to return 5.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=796261&group_id=44253
|