KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > jwi > jgallery > tags > IndexIteratorCursor


1 package de.jwi.jgallery.tags;
2
3 /*
4  * jGallery - Java web application to display image galleries
5  *
6  * Copyright (C) 2004 Juergen Weber
7  *
8  * This file is part of jGallery.
9  *
10  * jGallery is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
12  * version.
13  *
14  * jGallery is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
15  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License along with jGallery; if not, write to the Free
19  * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston
20  */

21
22
23 /**
24  * This is a container class for usage by IndexIterator Tag.
25  * It contains data about the current index page
26  * @author Juergen Weber
27  * Source file created on 10.03.2004
28  *
29  */

30 public class IndexIteratorCursor
31 {
32     private String JavaDoc page;
33     private String JavaDoc number;
34     private String JavaDoc selected;
35     
36     public String JavaDoc getNumber()
37     {
38         return number;
39     }
40     public void setNumber(String JavaDoc number)
41     {
42         this.number = number;
43     }
44     public String JavaDoc getPage()
45     {
46         return page;
47     }
48     public void setPage(String JavaDoc page)
49     {
50         this.page = page;
51     }
52     public String JavaDoc getSelected()
53     {
54         return selected;
55     }
56     public void setSelected(String JavaDoc selected)
57     {
58         this.selected = selected;
59     }
60 }
61
Popular Tags