?? signaturepasswords.java
字號:
/*
********************************************************************
*
* Filename : SignaturePasswords
* Package : eclipseme.core.model.impl
* System : eclipseme.core
* Author : Kevin Hunter
* Description : Bean used to return signature properties from
* the status handler.
*
*
* Copyright (c) 2004 Kevin Hunter
* All Rights Reserved.
* Licensed under the Eclipse Public License - v 1.0
* For more information see http://www.eclipse.org/legal/epl-v10.html
*
* CVS
* $$Source: /cvsroot/eclipseme/eclipseme.core/src/eclipseme/core/signing/SignaturePasswords.java,v $$
* $$Author: setera $$
* $$Date: 2005/10/29 15:39:29 $$
* $$Revision: 1.1 $$
*
********************************************************************
*/
package eclipseme.core.signing;
/**
* This class carries a pair of passwords back from the status handler
* (SigningPasswordsHandler) in the ui area.
* <p>
* <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
* change before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost
* certainly be broken as the API evolves.
* </p>
*/
public class SignaturePasswords
{
private String keystorePassword;
private String keyPassword;
public SignaturePasswords()
{
}
public SignaturePasswords(String keystorePass, String keyPass)
{
keystorePassword = keystorePass;
keyPassword = keyPass;
}
public String getKeystorePassword()
{
return(keystorePassword);
}
public void setKeystorePassword(String value)
{
keystorePassword = value;
}
public String getKeyPassword()
{
return(keyPassword);
}
public void setKeyPassword(String value)
{
keyPassword = value;
}
}
/*
********************************************************************
* CVS History:
* $$Log: SignaturePasswords.java,v $
* $Revision 1.1 2005/10/29 15:39:29 setera
* $Refactor packaging and signing functionality into their own packages
* $Warn user while trying to package a project with an invalid platform definition (Bug 1304273)
* $
* $Revision 1.2 2004/12/17 01:33:34 setera
* $Documentation updates for the 0.7.0
* $
* $Revision 1.1 2004/11/27 21:26:50 kdhunter
* $Bean to carry passwords from status handler
* $$
*
********************************************************************
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -