📄 account.jad
字号:
// Decompiled by DJ v2.5.5.45 Copyright 2000 Atanas Neshkov Date: 2003-11-8 23:04:57
// Home Page : http//members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: Account.java
package com.j2eewebservice;
public class Account
{
public Account()
{
}
public Account(int i, Float float1, String s, String s1)
{
age = i;
deposit = float1;
password = s;
userName = s1;
}
public int getAge()
{
return age;
}
public void setAge(int i)
{
age = i;
}
public Float getDeposit()
{
return deposit;
}
public void setDeposit(Float float1)
{
deposit = float1;
}
public String getPassword()
{
return password;
}
public void setPassword(String s)
{
password = s;
}
public String getUserName()
{
return userName;
}
public void setUserName(String s)
{
userName = s;
}
protected int age;
protected Float deposit;
protected String password;
protected String userName;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -