📄 sdalistviewitem.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cn.sda.ui;import javax.microedition.lcdui.Image;/** * * @author Administrator */public class SDAListViewItem { private String itemString="" ; private Image image=null; private Image selectedImage=null; private int col=-1; private int row=-1; public Image getImage() { return image; } public void setImage(Image image) { this.image = image; } public String getItemString() { return itemString; } public void setItemString(String itemString) { this.itemString = itemString; } public Image getSelectedImage() { return selectedImage; } public void setSelectedImage(Image selectedImage) { this.selectedImage = selectedImage; } public int getCol() { return col; } protected void setCol(int col) { this.col = col; } public int getRow() { return row; } protected void setRow(int row) { this.row = row; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -