메뉴 기본 속성의 솔리드 클래스 정보
2615 단어 토대
코드에서 메뉴를 자주 사용하는데 사용하기 편리하도록 메뉴 실체 클래스를 만들어 메뉴를 정의합니다.
코드:
package com.zhouzijing.android.util;
/**
* .
* @author stephen
*
*/
public class MenuEntity{
/**
* .
* @param groupId
* @param itemId
* @param order
* @param title
* @param iconRes
*/
public MenuEntity(int groupId, int itemId, int order, CharSequence title,int iconRes) {
this(groupId,itemId,order,title);
this.iconRes = iconRes;
}
/**
* .
* @param groupId
* @param itemId
* @param order
* @param title
*/
public MenuEntity(int groupId, int itemId, int order, CharSequence title) {
super();
this.groupId = groupId;
this.itemId = itemId;
this.order = order;
this.title = title;
}
/**
* .
*/
private int groupId;
/**
* .
*/
private int itemId;
/**
* .
*/
private int order;
/**
* .
*/
private CharSequence title;
/**
* .
*/
private int iconRes;
/**
* @return the groupId
*/
public int getGroupId() {
return groupId;
}
/**
* @param groupId the groupId to set
*/
public void setGroupId(int groupId) {
this.groupId = groupId;
}
/**
* @return the itemId
*/
public int getItemId() {
return itemId;
}
/**
* @param itemId the itemId to set
*/
public void setItemId(int itemId) {
this.itemId = itemId;
}
/**
* @return the order
*/
public int getOrder() {
return order;
}
/**
* @param order the order to set
*/
public void setOrder(int order) {
this.order = order;
}
/**
* @return the title
*/
public CharSequence getTitle() {
return title;
}
/**
* @param title the title to set
*/
public void setTitle(CharSequence title) {
this.title = title;
}
/**
* @return the iconRes
*/
public int getIconRes() {
return iconRes;
}
/**
* @param iconRes the iconRes to set
*/
public void setIconRes(int iconRes) {
this.iconRes = iconRes;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[파이썬 기초] 파이썬의 특수한 방법을 이해하고 코드를 읽어주세요!이번에는 파이톤의'특별한 방법'에 대한 해설을 진행한다. 나는 파이톤의 실제 업무에서 다른 사람이 쓴 코드를 자주 읽는다. 익숙하지 않으면 무엇을 하고 있는지 모르지만 시간만 지나갈 수 있다. 이런 상황을 방지하기 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.