Statistics
| Revision:

gvsig-projects-pool / org.gvsig.winmgr / trunk / org.gvsig.winmgr.lib / org.gvsig.winmgr.lib.impl / src / main / java / org / gvsig / winmgr / lib / impl / tools / DefaultStatusBarBuilder.java @ 682

History | View | Annotate | Download (545 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.winmgr.lib.impl.tools;
7

    
8
import javax.swing.JComponent;
9
import org.gvsig.winmgr.lib.api.ToolsBuilder;
10

    
11
/**
12
 *
13
 * @author jjdelcerro
14
 */
15
public class DefaultStatusBarBuilder implements ToolsBuilder.StatusBarBuilder {
16

    
17
    public DefaultStatusBarBuilder() {
18
    }
19

    
20
    @Override
21
    public JComponent build() {
22
        return null;
23
    }
24
    
25
}