Reputation: 1093
What do the red and green dots in the lower left of the symbol indicate?
The documentation for symbols in IntelliJ / Android Studio does not mention their meaning.
Upvotes: 3
Views: 514
Reputation: 1411
Green = getter, red = setter.
If I have
private boolean mBacon = false;
public boolean getBacon() {
return mBacon;
}
public void setBacon(boolean b) {
mBacon = b;
}
I get
Upvotes: 6