Fixed: 1736622 - "php marker occurrences" color - did`t have an effect
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / PasswordFinder.java
1 package com.quantum.model;
2
3 /**
4  * When a bookmark doesn't have a saved password, an
5  * implementation of a password finder class can be called 
6  * to obtain one.
7  * 
8  * @author BC
9  */
10 public interface PasswordFinder {
11     
12     public String getPassword();
13     public boolean isPasswordMeantToBeSaved();
14
15 }