本文整理汇总了Java中org.opensourcephysics.controls.XMLControlElement.getPassword方法的典型用法代码示例。如果您正苦于以下问题:Java XMLControlElement.getPassword方法的具体用法?Java XMLControlElement.getPassword怎么用?Java XMLControlElement.getPassword使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.opensourcephysics.controls.XMLControlElement
的用法示例。
在下文中一共展示了XMLControlElement.getPassword方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: open
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Opens an xml file specified by name.
*
* @param fileName the file name
* @return the file name, if successfully opened
*/
public String open(String fileName) {
OSPLog.fine("opening "+fileName); //$NON-NLS-1$
// read the file into an XML control
XMLControlElement control = new XMLControlElement();
control.setDecryptPolicy(XMLControlElement.NEVER_DECRYPT);
control.read(fileName);
if(control.failedToRead()) {
return null;
}
String pass = control.getPassword();
if(pass==null) {
passwordField.setText(null);
displayXML(control);
encryptedCheckBox.setEnabled(true);
} else if(passwordField.getText().equals(pass)) {
displayXML(decrypt(control));
encryptedCheckBox.setEnabled(true);
} else {
displayXML(control);
encryptedCheckBox.setEnabled(false);
}
this.fileName = fileName;
refreshGUI();
return fileName;
}
示例2: send
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Sends a job to this tool and specifies a tool to reply to.
*
* @param job the Job
* @param replyTo the tool to notify when the job is complete (may be null)
* @throws RemoteException
*/
public void send(Job job, Tool replyTo) throws RemoteException {
// read xml into XMLControl and display the control
XMLControlElement control = new XMLControlElement();
control.setDecryptPolicy(XMLControlElement.NEVER_DECRYPT);
control.readXML(job.getXML());
if(control.failedToRead()) {
return;
}
String pass = control.getPassword();
if(pass==null) {
passwordField.setText(null);
displayXML(control);
} else if(passwordField.getText().equals(pass)) {
displayXML(decrypt(control));
} else {
displayXML(control);
}
fileName = null;
refreshGUI();
// log the job with the job manager
jobManager.log(job, replyTo);
}
示例3: setPassword
import org.opensourcephysics.controls.XMLControlElement; //导入方法依赖的package包/类
/**
* Sets the password of the currently displayed control.
*
* @param password the password
*/
private void setPassword(String password) {
XMLControlElement control = getCurrentControl();
if(control==null) {
return;
}
String pass = control.getPassword();
if(!encryptedCheckBox.isEnabled()) {
boolean verified = password.equals(pass);
if(verified) {
displayXML(decrypt(control));
encryptedCheckBox.setEnabled(true);
} else {
Toolkit.getDefaultToolkit().beep();
OSPLog.fine("Bad password: "+password); //$NON-NLS-1$
}
} else if(control.getObjectClass()==Cryptic.class) {
// decrypt control, change password, and re-encrypt
XMLControlElement temp = decrypt(control);
temp.setPassword(password);
temp = encrypt(temp);
control.setValue("cryptic", temp.getString("cryptic")); //$NON-NLS-1$ //$NON-NLS-2$
treePanel.refresh();
} else {
// change password
if(password.equals("")&&!encryptedCheckBox.isSelected()) { //$NON-NLS-1$
password = null;
}
control.setPassword(password);
treePanel.refresh();
// treePanel.setSelectedNode("xml_password"); //$NON-NLS-1$
}
refreshGUI();
}