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

📄 bookstoremessages.java

📁 jsp 应用开发技术光盘 是《jsp应用开发技术》这本书的源代码
💻 JAVA
字号:
package messages;import java.util.*;public class BookstoreMessages extends ListResourceBundle {    static final Object[][] contents =    {        {            "ServerError",            "Your request cannot be completed.  The server got the following error: "        },         { "Start", "Start Shopping" },        { "Critics", "Here's what the critics say: " },        { "Price", "Our Price: " },        { "CartRemoved", "You just removed " },        { "CartCleared", "You just cleared your shopping cart!" },        { "CartContents", "Your shopping cart contains " },        { "CartItem", " item" },        { "CartItems", " items" },        { "CartAdded1", "You added " },        { "CartAdded2", " to your shopping cart." },        { "CartCheck", "Check Shopping Cart" },        { "CartAdd", "Add to Cart" },        { "By", "by" },        { "Buy", "Buy Your Books" },        { "Choose", "Please choose from our selections:" },        { "ItemQuantity", "Quantity" },        { "ItemTitle", "Title" },        { "ItemPrice", "Price" },        { "RemoveItem", "Remove Item" },        { "Subtotal", "Subtotal:" },        { "ContinueShopping", "Continue Shopping" },        { "Checkout", "Check Out" },        { "ClearCart", "Clear Cart" },        { "CartEmpty", "Your cart is empty." },        { "Amount", "Your total purchase amount is:" },        {            "Purchase",            "To purchase the items in your shopping cart, please provide us with the following information:"        },        { "Name", "Name:" },        { "CCNumber", "Credit Card Number:" },        { "Submit", "Submit Information" },        { "Catalog", "Back to the Catalog" },        { "ThankYou", "Thank you for purchasing your books from us " },                {            "OrderError",            "Your order could not be completed due to insufficient inventory."        },                { "ShipDate", "Your order will be shipped on " }           };    public Object[][] getContents() {        return contents;    }}

⌨️ 快捷键说明

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