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 / DefaultWindow.java @ 682

History | View | Annotate | Download (7.18 KB)

1
package org.gvsig.winmgr.lib.impl;
2

    
3
import java.awt.Dimension;
4
import java.awt.Rectangle;
5
import javax.swing.JComponent;
6
import org.gvsig.winmgr.lib.api.Window;
7

    
8
/**
9
 *
10
 * @author jjdelcerro
11
 */
12
public class DefaultWindow 
13
        implements Window
14
    {
15

    
16
    private WindowStack windowStack;
17
    private JComponent contents; 
18
    private Object model; 
19
    private String title; 
20
    private int mode;
21
    private Object profile; 
22
    private Rectangle preferredBound; 
23
    private Dimension minimunSize;
24

    
25
    DefaultWindow(
26
        WindowStack windowStack,
27
        JComponent contents, 
28
        Object model, 
29
        String title, 
30
        int mode, 
31
        Object profile, 
32
        Rectangle preferredBound, 
33
        Dimension minimunSize
34
        ) {
35
    }
36

    
37
    @Override
38
    public boolean isIconifiable() {
39
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
40
    }
41

    
42
    @Override
43
    public boolean isMaximizable() {
44
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
45
    }
46

    
47
    @Override
48
    public boolean isResizable() {
49
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
50
    }
51

    
52
    @Override
53
    public boolean isModal() {
54
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
55
    }
56

    
57
    @Override
58
    public boolean isModeless() {
59
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
60
    }
61

    
62
    @Override
63
    public boolean isClosable() {
64
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
65
    }
66

    
67
    @Override
68
    public boolean isVisible() {
69
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
70
    }
71

    
72
    @Override
73
    public boolean isPalette() {
74
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
75
    }
76

    
77
    @Override
78
    public boolean isMaximized() {
79
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
80
    }
81

    
82
    @Override
83
    public boolean isClosed() {
84
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
85
    }
86

    
87
    @Override
88
    public boolean isExtern() {
89
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
90
    }
91

    
92
    @Override
93
    public boolean isIntern() {
94
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
95
    }
96

    
97
    @Override
98
    public boolean isDialog() {
99
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
100
    }
101

    
102
    @Override
103
    public Object getProfile() {
104
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
105
    }
106

    
107
    @Override
108
    public Object getModel() {
109
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
110
    }
111

    
112
    @Override
113
    public String getTitle() {
114
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
115
    }
116

    
117
    @Override
118
    public int getId() {
119
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
120
    }
121

    
122
    @Override
123
    public Rectangle getPreferredBounds() {
124
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
125
    }
126

    
127
    @Override
128
    public Rectangle getBounds() {
129
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
130
    }
131

    
132
    @Override
133
    public Dimension getMinimumSize() {
134
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
135
    }
136

    
137
    @Override
138
    public void setTitle(String title) {
139
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
140
    }
141

    
142
    @Override
143
    public void setPreferedBounds(Rectangle preferedBounds) {
144
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
145
    }
146

    
147
    @Override
148
    public void setBounds(Rectangle bounds) {
149
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
150
    }
151

    
152
    @Override
153
    public void setClosable(boolean b) {
154
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
155
    }
156

    
157
    @Override
158
    public void setMaximized(boolean maximized) {
159
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
160
    }
161

    
162
    @Override
163
    public void setMaximizable(boolean maximizable) {
164
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
165
    }
166

    
167
    @Override
168
    public void setMinimumSize(Dimension minSize) {
169
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
170
    }
171

    
172
    @Override
173
    public void toExtern() {
174
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
175
    }
176

    
177
    @Override
178
    public void toIntern() {
179
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
180
    }
181

    
182
    @Override
183
    public void toFront() {
184
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
185
    }
186

    
187
    @Override
188
    public void align(int mode) {
189
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
190
    }
191

    
192
    @Override
193
    public void close() {
194
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
195
    }
196

    
197
    @Override
198
    public void move(int x, int y) {
199
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
200
    }
201

    
202
    @Override
203
    public JComponent asJComponent() {
204
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
205
    }
206
    
207
}