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

📄 productbean.java

📁 对学习 VC有所帮助的几个例子
💻 JAVA
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   productBean.java

package myshop.product_sys;


public class productBean
{

    int id;
    float price;
    String name;
    String description;
    String catalogP;
    String catalogC;
    String catalogPC;
    String imgPath;

    public productBean()
    {
        id = 0;
        name = null;
        description = null;
        catalogP = null;
        catalogC = null;
        catalogPC = null;
        imgPath = null;
    }

    public String getCatalogC()
    {
        return catalogC;
    }

    public String getCatalogP()
    {
        return catalogP;
    }

    public String getCatalogPC()
    {
        return catalogPC;
    }

    public String getDescription()
    {
        return description;
    }

    public int getId()
    {
        return id;
    }

    public String getImgPath()
    {
        return imgPath;
    }

    public String getName()
    {
        return name;
    }

    public float getPrice()
    {
        return price;
    }

    public void setCatalogC(String s)
    {
        catalogC = s;
    }

    public void setCatalogP(String s)
    {
        catalogP = s;
    }

    public void setCatalogPC(String s)
    {
        catalogPC = s;
    }

    public void setDescription(String s)
    {
        description = s;
    }

    public void setId(int i)
    {
        id = i;
    }

    public void setImgPath(String s)
    {
        imgPath = s;
    }

    public void setName(String s)
    {
        name = s;
    }

    public void setPrice(float f)
    {
        price = f;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -