Projet

Général

Profil

Télécharger (1,71 ko) Statistiques
| Branche: | Tag: | Révision:
/*
* This program is a part of the IoTa Project.
*
* Copyright © 2008-2012 Université de Caen Basse-Normandie, GREYC
* Copyright © 2008-2012 Orange Labs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <http://www.gnu.org/licenses/>
*
* See AUTHORS for a list of contributors.
*/
package fr.unicaen.iota.discovery.client.gui;

import javax.swing.JFrame;

/**
*
*/
public class GuiClient extends JFrame {

private boolean canceled = false;
private String login = "login";
private String passwd = "password";

/**
* @return the canceled
*/
public boolean isCanceled() {
return canceled;
}

/**
* @param canceled the canceled to set
*/
public void setCanceled(boolean canceled) {
this.canceled = canceled;
}

/**
* @return the login
*/
public String getLogin() {
return login;
}

/**
* @param login the login to set
*/
public void setLogin(String login) {
this.login = login;
}

/**
* @return the passwd
*/
public String getPasswd() {
return passwd;
}

/**
* @param passwd the passwd to set
*/
public void setPasswd(String passwd) {
this.passwd = passwd;
}
}
(3-3/7)