blob: fc78991b3aa06bfccc842bc7160e3efe68f069fb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Laurent CARON
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Laurent CARON (laurent.caron at gmail dot com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.propertyTable.editor;
import org.eclipse.swt.SWT;
/**
* This editor is used to edit passwords.
*/
public class PTPasswordEditor extends PTBaseTextEditor {
/**
* Adds the verify listeners.
*
* @see org.mihalis.opal.propertyTable.editor.PTBaseTextEditor#addVerifyListeners()
*/
@Override
public void addVerifyListeners() {
}
/**
* Convert value.
*
* @return the object
* @see org.mihalis.opal.propertyTable.editor.PTBaseTextEditor#convertValue()
*/
@Override
public Object convertValue() {
return this.text.getText();
}
/**
* Gets the style.
*
* @return the style
* @see org.mihalis.opal.propertyTable.editor.PTBaseTextEditor#getStyle()
*/
@Override
public int getStyle() {
return SWT.PASSWORD;
}
}