CtrlConfirmaCadastroChamado.java
From Grupo6 Especoo
(Difference between revisions)
Line 1: | Line 1: | ||
<pre> | <pre> | ||
package sistemaordemservico; | package sistemaordemservico; | ||
+ | |||
+ | import java.beans.PropertyChangeListener; | ||
+ | import java.beans.PropertyChangeSupport; | ||
public class CtrlConfirmaCadastroChamado | public class CtrlConfirmaCadastroChamado | ||
{ | { | ||
+ | private PropertyChangeSupport pcs = new PropertyChangeSupport(this); | ||
+ | |||
+ | public void addPropertyChangeListener(PropertyChangeListener l) | ||
+ | { | ||
+ | pcs.addPropertyChangeListener(l); | ||
+ | } | ||
+ | |||
public void confirmarCadastro(Integer nroChamado) | public void confirmarCadastro(Integer nroChamado) | ||
{ | { | ||
System.out.println("CtrlConfirmaCadastroChamado.confirmarCadastro(Integer)"); | System.out.println("CtrlConfirmaCadastroChamado.confirmarCadastro(Integer)"); | ||
- | + | ||
- | + | TelaConfirmaCadastroChamado telaConfirmaCadastroChamado = new TelaConfirmaCadastroChamado(); | |
+ | telaConfirmaCadastroChamado.confirmarCadastro(nroChamado); | ||
+ | |||
+ | String msgTela = "Tela de confirmacao de cadastro exibida"; | ||
+ | |||
+ | pcs.firePropertyChange("msgTela", null, msgTela); | ||
} | } | ||
} | } | ||
</pre> | </pre> |
Current revision as of 20:28, 23 May 2007
package sistemaordemservico; import java.beans.PropertyChangeListener; import java.beans.PropertyChangeSupport; public class CtrlConfirmaCadastroChamado { private PropertyChangeSupport pcs = new PropertyChangeSupport(this); public void addPropertyChangeListener(PropertyChangeListener l) { pcs.addPropertyChangeListener(l); } public void confirmarCadastro(Integer nroChamado) { System.out.println("CtrlConfirmaCadastroChamado.confirmarCadastro(Integer)"); TelaConfirmaCadastroChamado telaConfirmaCadastroChamado = new TelaConfirmaCadastroChamado(); telaConfirmaCadastroChamado.confirmarCadastro(nroChamado); String msgTela = "Tela de confirmacao de cadastro exibida"; pcs.firePropertyChange("msgTela", null, msgTela); } }