本文整理汇总了Java中org.opensourcephysics.controls.XMLControlElement.toXML方法的典型用法代码示例。如果您正苦于以下问题:Java XMLControlElement.toXML方法的具体用法?Java XMLControlElement.toXML怎么用?Java XMLControlElement.toXML使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.opensourcephysics.controls.XMLControlElement
的用法示例。
在下文中一共展示了XMLControlElement.toXML方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: copyAction
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Copies objects found in the specified xml control.
*/
protected void copyAction() {
XMLControlElement control = new XMLControlElement(DrawingFrame3D.this);
control.saveObject(null);
StringSelection data = new StringSelection(control.toXML());
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(data, this);
}
示例2: encrypt
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Encrypts the specified XMLcontrol using a Cryptic object.
*
* @param control the XMLControl
* @return the encrypted control
*/
private XMLControlElement encrypt(XMLControlElement control) {
// return controls that are already encrypted
if(control.getObjectClass()==Cryptic.class) {
return control;
}
// encrypt control and set its password
String xml = control.toXML();
Cryptic cryptic = new Cryptic(xml);
XMLControlElement encrypted = new XMLControlElement(cryptic);
encrypted.setPassword(control.getPassword());
return encrypted;
}
示例3: copyAction
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Copies objects found in the specified xml control.
*
* @param control the xml control
*/
protected void copyAction(XMLControlElement control) {
StringSelection data = new StringSelection(control.toXML());
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(data, this);
}