repo.or.cz
/
bylock.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
first commit
[bylock.git]
/
sources
/
group
/
pals
/
android
/
lib
/
ui
/
filechooser
/
services
/
e.java
blob
43b7697bb61eb3c40a9f23736711ffb53f09b816
1
package
group
.
pals
.
android
.
lib
.
ui
.
filechooser
.
services
;
2
3
/* compiled from: MyApp */
4
public enum
e
{
5
Ascending
(
true
),
6
Descending
(
false
);
7
8
final boolean
c
;
9
10
private
e
(
boolean
z
) {
11
this
.
c
=
z
;
12
}
13
14
public boolean
a
() {
15
return this
.
c
;
16
}
17
}