Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.api / src / main / java / org / gvsig / tools / swing / api / MessageBarController.java @ 2206

History | View | Annotate | Download (433 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.tools.swing.api;
7

    
8

    
9
public interface MessageBarController {
10

    
11
    public void setTime(int time);
12
    
13
    public void setText(String text, int messageType);
14
    
15
    public void setText(String text);
16
    
17
    public void clear();
18
}