dashboard
repositories
filestore
activity
search
login
brydz
/
android
Obliczenia brydżowe (Android)
summary
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Extract TextWatcher to separate variable for re-use.
Jacek Kowalski
2015-01-17
80f235c3ac05e57fe1f878c37cb141374e643e50
[brydz/android]
/
app
/
src
/
main
/
java
/
net
/
jacekk
/
bridge
/
BridgeResult.java
1
2
3
4
5
6
7
8
9
10
11
12
13
package net.jacekk.bridge;
public class BridgeResult {
public enum PointsFor {
Us, Them
}
public PointsFor pointsFor;
public int pointsBefore;
public int points;
public int IMPs;
public int percent;
}