source: extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/ui/mainframe/IThumbnailPanel.java @ 6972

Last change on this file since 6972 was 6972, checked in by mlg, 14 years ago

New feature : research
Add a research functionnality : it's juste a field on the bottom right of the main frame. To make a research, the user have to type text in that field and press enter. It opens a new tab. A new tab is opened for each research. The tab contains the query string.

File size: 496 bytes
Line 
1package fr.mael.jiwigo.ui.mainframe;
2
3import fr.mael.jiwigo.om.Category;
4
5public interface IThumbnailPanel {
6    /**
7     * @return the categoryId
8     */
9    public Integer getCategoryId();
10
11    /**
12     * @param categoryId the categoryId to set
13     */
14    public void setCategoryId(Integer categoryId);
15
16    /**
17     * @return the category
18     */
19    public Category getCategory();
20
21    /**
22     * @param category the category to set
23     */
24    public void setCategory(Category category);
25}
Note: See TracBrowser for help on using the repository browser.