bookbean.java

来自「一个java写的加密算法」· Java 代码 · 共 37 行

JAVA
37
字号
/* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. *//** * Copyright (c) 1999 The Apache Software Foundation.  All rights  * reserved. */package samples.webapps.simple.jsp2.examples;public class BookBean {    private String title;    private String author;    private String isbn;        public BookBean( String title, String author, String isbn ) {        this.title = title;        this.author = author;        this.isbn = isbn;    }    public String getTitle() {        return this.title;    }        public String getAuthor() {        return this.author;    }        public String getIsbn() {        return this.isbn;    }    }

⌨️ 快捷键说明

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