⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 signaturepasswords.java

📁 eclipseme的最新版本的source,欢迎j2me程序员使用
💻 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 + -