- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
{
final int p = page;
final boolean current = p == 1;
this.pagercell(writer, current, 1, "<<");
}
for (int p = page - this.size; p < page; p++) {
if (p >= 1) {
final boolean current = p == 1;
this.pagercell(writer, current, p);
}
}
{
final int p = page;
final boolean current = (p - this.size) < 1;
this.pagercell(writer, current, p - this.size, "<");
}
{
final int p = page;
final boolean current = p == page;
this.pagercell(writer, current, p);
}
{
final int p = page;
final boolean current = (p + this.size) > pages;
this.pagercell(writer, current, p + this.size, ">");
}
for (int p = page + 1; p <= (page + this.size); p++) {
if (p <= pages) {
final boolean current = p == pages;
this.pagercell(writer, current, p);
}
}
{
final int p = page;
final boolean current = p == pages;
this.pagercell(writer, current, pages, ">>");
}
tirinox 22.04.2014 11:20 # 0
roman-kashitsyn 22.04.2014 11:23 # +2
bormand 22.04.2014 11:38 # +5
eth0 22.04.2014 19:08 # 0
Да, переслушал, синтезаторное. Память подводит.
defecate-plusplus 22.04.2014 22:30 # 0
гитарное канешна
http://www.youtube.com/watch?v=9jK-NcRmVcw#t=196
eth0 23.04.2014 17:48 # 0