35 lines
852 B
Java
35 lines
852 B
Java
|
package fenetres.create_act;
|
||
|
|
||
|
import java.awt.event.ActionEvent;
|
||
|
|
||
|
import javax.swing.AbstractAction;
|
||
|
import javax.swing.Action;
|
||
|
import javax.swing.JOptionPane;
|
||
|
|
||
|
import cXML.node;
|
||
|
|
||
|
public class actTitre3 extends AbstractAction{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
{
|
||
|
putValue( Action.NAME, "Titre 3" );
|
||
|
putValue( Action.SHORT_DESCRIPTION, "Titre 3" );
|
||
|
}
|
||
|
@Override
|
||
|
public void actionPerformed(ActionEvent e) {
|
||
|
node nod = (node) fenetres.create.getSelectNode().getUserObject();
|
||
|
String titre = "";
|
||
|
if(nod.getAttributs().get("titre3")!=null) {
|
||
|
titre = nod.getAttributs().get("titre3");
|
||
|
}
|
||
|
|
||
|
String a = JOptionPane.showInputDialog(null,"Quel est le titre?",titre);
|
||
|
nod.titre3(a);
|
||
|
fenetres.create.getTextNodeSelect().refreshAffichage(nod);
|
||
|
}
|
||
|
|
||
|
}
|