33 lines
896 B
Java
33 lines
896 B
Java
package fenetres.create_act;
|
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
import javax.swing.AbstractAction;
|
|
import javax.swing.Action;
|
|
import javax.swing.ImageIcon;
|
|
|
|
import cXML.node;
|
|
import fenetres.create;
|
|
|
|
public class actInsereInformationMultipleFalse extends AbstractAction{
|
|
{
|
|
putValue( Action.NAME, "false" );
|
|
putValue( Action.SHORT_DESCRIPTION, "false" );
|
|
putValue( Action.SMALL_ICON, new ImageIcon(create.class.getResource("/resources/falsemini.png")));
|
|
}
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
node nod = (node) fenetres.create.getSelectNode().getUserObject();
|
|
for(int i = 0 ; i < nod.getNodes().size();i++) {
|
|
nod.getNodes().get(i).getAttributs().remove("information");
|
|
}
|
|
fenetres.create.getTextNodeSelect().refreshAffichage(nod);
|
|
}
|
|
|
|
}
|