FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProjects/src/C1.java at master · AndreUTF/JavaProjects · GitHub
AndreUTF
/
JavaProjects
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaProjects
/
src
/
C1.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
322 lines (283 loc) · 17.6 KB
Breadcrumbs
JavaProjects
/
src
/
C1.java
Copy path
File metadata and controls
322 lines (283 loc) · 17.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
import
java
.
text
.
DecimalFormat
;
import
java
.
util
.
InputMismatchException
;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author ANDRE
*/
public
class
C1
extends
javax
.
swing
.
JFrame
{
/**
* Creates new form C1
*/
public
C1
() {
initComponents
();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@
SuppressWarnings
(
"unchecked"
)
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private
void
initComponents
() {
jLabel1
=
new
javax
.
swing
.
JLabel
();
jLabel2
=
new
javax
.
swing
.
JLabel
();
jLabel3
=
new
javax
.
swing
.
JLabel
();
jLabel4
=
new
javax
.
swing
.
JLabel
();
jLabel5
=
new
javax
.
swing
.
JLabel
();
jLabel6
=
new
javax
.
swing
.
JLabel
();
resistor1
=
new
javax
.
swing
.
JTextField
();
potenciaresistor1
=
new
javax
.
swing
.
JTextField
();
resistor2
=
new
javax
.
swing
.
JTextField
();
potenciaresistor2
=
new
javax
.
swing
.
JTextField
();
modulofonte
=
new
javax
.
swing
.
JTextField
();
modofonte
=
new
javax
.
swing
.
JTextField
();
jLabel7
=
new
javax
.
swing
.
JLabel
();
jLabel8
=
new
javax
.
swing
.
JLabel
();
jScrollPane1
=
new
javax
.
swing
.
JScrollPane
();
result
=
new
javax
.
swing
.
JTextArea
();
btOk
=
new
javax
.
swing
.
JButton
();
btLimpar
=
new
javax
.
swing
.
JButton
();
setDefaultCloseOperation
(
javax
.
swing
.
WindowConstants
.
EXIT_ON_CLOSE
);
setTitle
(
"Circuito 1 - Resistores em série"
);
jLabel1
.
setText
(
"Valor R1 (Ohms):"
);
jLabel2
.
setText
(
"Potência R1 (Watts) :"
);
jLabel3
.
setText
(
"Valor R2 (Ohms):"
);
jLabel4
.
setText
(
"Potência R2 (Ohms):"
);
jLabel5
.
setText
(
"Módulo da Fonte (módulo da fonte):"
);
jLabel6
.
setText
(
"Modo da Fonte (V ou A):"
);
resistor1
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
resistor1ActionPerformed
(
evt
);
}
});
potenciaresistor1
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
potenciaresistor1ActionPerformed
(
evt
);
}
});
resistor2
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
resistor2ActionPerformed
(
evt
);
}
});
potenciaresistor2
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
potenciaresistor2ActionPerformed
(
evt
);
}
});
modulofonte
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
modulofonteActionPerformed
(
evt
);
}
});
modofonte
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
modofonteActionPerformed
(
evt
);
}
});
jLabel7
.
setFont
(
new
java
.
awt
.
Font
(
"Tahoma"
,
3
,
14
));
// NOI18N
jLabel7
.
setText
(
"Clique em OK os resultados desse circuito."
);
jLabel8
.
setIcon
(
new
javax
.
swing
.
ImageIcon
(
getClass
().
getResource
(
"/Imagens/circuito-serie-de-resistores.png"
)));
// NOI18N
result
.
setColumns
(
20
);
result
.
setRows
(
5
);
jScrollPane1
.
setViewportView
(
result
);
btOk
.
setText
(
"OK"
);
btOk
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
btOkActionPerformed
(
evt
);
}
});
btLimpar
.
setText
(
"Limpar"
);
btLimpar
.
addActionListener
(
new
java
.
awt
.
event
.
ActionListener
() {
public
void
actionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
btLimparActionPerformed
(
evt
);
}
});
javax
.
swing
.
GroupLayout
layout
=
new
javax
.
swing
.
GroupLayout
(
getContentPane
());
getContentPane
().
setLayout
(
layout
);
layout
.
setHorizontalGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addContainerGap
(
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
Short
.
MAX_VALUE
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addComponent
(
jScrollPane1
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
654
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
,
false
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
,
false
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addComponent
(
jLabel5
)
.
addComponent
(
jLabel4
)
.
addComponent
(
jLabel3
)
.
addComponent
(
jLabel2
)
.
addComponent
(
jLabel1
))
.
addGap
(
22
,
22
,
22
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
TRAILING
)
.
addComponent
(
modulofonte
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)
.
addComponent
(
potenciaresistor2
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)
.
addComponent
(
potenciaresistor1
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)
.
addComponent
(
resistor1
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)
.
addComponent
(
resistor2
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)))
.
addGroup
(
layout
.
createSequentialGroup
()
.
addComponent
(
jLabel6
)
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
Short
.
MAX_VALUE
)
.
addComponent
(
modofonte
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
59
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
)))
.
addComponent
(
jLabel7
))
.
addGap
(
46
,
46
,
46
))
.
addGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
TRAILING
,
layout
.
createSequentialGroup
()
.
addComponent
(
btLimpar
)
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
Short
.
MAX_VALUE
)
.
addComponent
(
btOk
)
.
addGap
(
76
,
76
,
76
)))
.
addComponent
(
jLabel8
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
344
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))))
);
layout
.
setVerticalGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
LEADING
)
.
addGroup
(
layout
.
createSequentialGroup
()
.
addContainerGap
()
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel1
)
.
addComponent
(
resistor1
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel2
)
.
addComponent
(
potenciaresistor1
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel3
)
.
addComponent
(
resistor2
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel4
)
.
addComponent
(
potenciaresistor2
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel5
)
.
addComponent
(
modulofonte
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
jLabel6
)
.
addComponent
(
modofonte
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
UNRELATED
)
.
addComponent
(
jLabel7
)
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addGroup
(
layout
.
createParallelGroup
(
javax
.
swing
.
GroupLayout
.
Alignment
.
BASELINE
)
.
addComponent
(
btOk
)
.
addComponent
(
btLimpar
)))
.
addComponent
(
jLabel8
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
,
218
,
javax
.
swing
.
GroupLayout
.
PREFERRED_SIZE
))
.
addPreferredGap
(
javax
.
swing
.
LayoutStyle
.
ComponentPlacement
.
RELATED
)
.
addComponent
(
jScrollPane1
,
javax
.
swing
.
GroupLayout
.
DEFAULT_SIZE
,
131
,
Short
.
MAX_VALUE
)
.
addContainerGap
())
);
pack
();
setLocationRelativeTo
(
null
);
}
// </editor-fold>//GEN-END:initComponents
private
void
resistor1ActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_resistor1ActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_resistor1ActionPerformed
private
void
potenciaresistor1ActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_potenciaresistor1ActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_potenciaresistor1ActionPerformed
private
void
potenciaresistor2ActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_potenciaresistor2ActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_potenciaresistor2ActionPerformed
private
void
modulofonteActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_modulofonteActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_modulofonteActionPerformed
private
void
btOkActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_btOkActionPerformed
if
(
resistor1
.
getText
().
isEmpty
()||
potenciaresistor1
.
getText
().
isEmpty
()
||
resistor2
.
getText
().
isEmpty
()||
potenciaresistor1
.
getText
().
isEmpty
()
||
modulofonte
.
getText
().
isEmpty
()||
modofonte
.
getText
().
isEmpty
()||
(
Double
.
parseDouble
(
resistor1
.
getText
())<=
0.0
)||(
Double
.
parseDouble
(
potenciaresistor1
.
getText
())<=
0.0
)
||(
Double
.
parseDouble
(
resistor2
.
getText
())<=
0.0
)||(
Double
.
parseDouble
(
potenciaresistor2
.
getText
())<=
0.0
)
||(
Double
.
parseDouble
(
modulofonte
.
getText
()) <=
0.0
)){
result
.
append
(
"Há campo(s) vazio(s) ou campos de texto com valores negativos ou maior que 0.
\n
"
);
}
else
{
result
.
append
(
"Atenção a entrada de dados!!!!
\n
"
);
Circuito1
c1
=
new
Circuito1
();
DecimalFormat
f
=
new
DecimalFormat
(
"####0.0000"
);
c1
.
parametros
(
new
Resistor
(
Double
.
parseDouble
(
potenciaresistor1
.
getText
()),
Double
.
parseDouble
(
resistor1
.
getText
())),
new
Resistor
(
Double
.
parseDouble
(
potenciaresistor2
.
getText
()),
Double
.
parseDouble
(
resistor2
.
getText
())),
new
Fonte
(
0.0
,
Double
.
parseDouble
(
modulofonte
.
getText
())));
if
(
"V"
.
equals
(
modofonte
.
getText
())){
result
.
append
(
"
\n
Resistência Equivalente: "
+
f
.
format
(
c1
.
equivalente
()) +
" Ohms
\n
Corrente Elétrica: "
+
f
.
format
(
c1
.
corrente
()) +
" A
\n
Tensão R1:"
+
f
.
format
(
c1
.
tensao1
()) +
" V
\n
Tensão R2:"
+
f
.
format
(
c1
.
tensao2
()) +
" V
\n
Potência R1:"
+
f
.
format
(
c1
.
potencia1
()) +
" Watts
\n
Potência R2:"
+
f
.
format
(
c1
.
potencia2
()) +
"Watts"
);
}
else
if
(
"A"
.
equals
(
modofonte
.
getText
())){
result
.
append
(
"
\n
Resistência Equivalente: "
+
f
.
format
(
c1
.
equivalente
()) +
" Ohms
\n
Corrente Elétrica: "
+
f
.
format
(
c1
.
getF
().
get
(
0
).
getValor
()) +
" A
\n
Tensão R1:"
+
f
.
format
(
c1
.
tensaor1
()) +
" V
\n
Tensão R2:"
+
f
.
format
(
c1
.
tensaor2
()) +
" V
\n
Potência R1:"
+
f
.
format
(
c1
.
potenciar1
()) +
" Watts
\n
Potência R2:"
+
f
.
format
(
c1
.
potenciar2
()) +
"Watts"
);
}
}
}
//GEN-LAST:event_btOkActionPerformed
private
void
resistor2ActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_resistor2ActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_resistor2ActionPerformed
private
void
modofonteActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_modofonteActionPerformed
// TODO add your handling code here:
}
//GEN-LAST:event_modofonteActionPerformed
private
void
btLimparActionPerformed
(
java
.
awt
.
event
.
ActionEvent
evt
) {
//GEN-FIRST:event_btLimparActionPerformed
result
.
setText
(
""
);
}
//GEN-LAST:event_btLimparActionPerformed
/**
* @param args the command line arguments
*/
public
static
void
main
(
String
args
[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try
{
for
(
javax
.
swing
.
UIManager
.
LookAndFeelInfo
info
:
javax
.
swing
.
UIManager
.
getInstalledLookAndFeels
()) {
if
(
"Nimbus"
.
equals
(
info
.
getName
())) {
javax
.
swing
.
UIManager
.
setLookAndFeel
(
info
.
getClassName
());
break
;
}
}
}
catch
(
ClassNotFoundException
ex
) {
java
.
util
.
logging
.
Logger
.
getLogger
(
C1
.
class
.
getName
()).
log
(
java
.
util
.
logging
.
Level
.
SEVERE
,
null
,
ex
);
}
catch
(
InstantiationException
ex
) {
java
.
util
.
logging
.
Logger
.
getLogger
(
C1
.
class
.
getName
()).
log
(
java
.
util
.
logging
.
Level
.
SEVERE
,
null
,
ex
);
}
catch
(
IllegalAccessException
ex
) {
java
.
util
.
logging
.
Logger
.
getLogger
(
C1
.
class
.
getName
()).
log
(
java
.
util
.
logging
.
Level
.
SEVERE
,
null
,
ex
);
}
catch
(
javax
.
swing
.
UnsupportedLookAndFeelException
ex
) {
java
.
util
.
logging
.
Logger
.
getLogger
(
C1
.
class
.
getName
()).
log
(
java
.
util
.
logging
.
Level
.
SEVERE
,
null
,
ex
);
}
//</editor-fold>
/* Create and display the form */
java
.
awt
.
EventQueue
.
invokeLater
(
new
Runnable
() {
public
void
run
() {
new
C1
().
setVisible
(
true
);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private
javax
.
swing
.
JButton
btLimpar
;
private
javax
.
swing
.
JButton
btOk
;
private
javax
.
swing
.
JLabel
jLabel1
;
private
javax
.
swing
.
JLabel
jLabel2
;
private
javax
.
swing
.
JLabel
jLabel3
;
private
javax
.
swing
.
JLabel
jLabel4
;
private
javax
.
swing
.
JLabel
jLabel5
;
private
javax
.
swing
.
JLabel
jLabel6
;
private
javax
.
swing
.
JLabel
jLabel7
;
private
javax
.
swing
.
JLabel
jLabel8
;
private
javax
.
swing
.
JScrollPane
jScrollPane1
;
private
javax
.
swing
.
JTextField
modofonte
;
private
javax
.
swing
.
JTextField
modulofonte
;
private
javax
.
swing
.
JTextField
potenciaresistor1
;
private
javax
.
swing
.
JTextField
potenciaresistor2
;
private
javax
.
swing
.
JTextField
resistor1
;
private
javax
.
swing
.
JTextField
resistor2
;
private
javax
.
swing
.
JTextArea
result
;
// End of variables declaration//GEN-END:variables
}
Back
|
FazBrowse Home
|
New Git URL