📄 favoriteitemactionitem.java
字号:
package com.sslexplorer.navigation;
/**
* <p>
* Data holder for action information
*
* @author James D Robinson <a href="mailto:james@3sp.com"><james@3sp.com></a>
*
*
*/
public class FavoriteItemActionItem {
private String actionName;
private String bundle;
private String nameKey;
private String descriptionKey;
private String actionPath;
/**
* <p>
* Construct the action data holder.
*
* @param actionName
* @param actionPath
* @param nameKey
* @param descriptionKey
* @param bundle
*/
public FavoriteItemActionItem(String actionName, String actionPath, String nameKey, String descriptionKey, String bundle) {
this.actionName = actionName;
this.actionPath = actionPath;
this.nameKey = nameKey;
this.descriptionKey = descriptionKey;
this.bundle = bundle;
}
/**
* @return The actionName
*/
public String getActionName() {
return actionName;
}
/**
* @param actionName
*/
public void setActionName(String actionName) {
this.actionName = actionName;
}
/**
* @return the actionPath
*/
public String getActionPath() {
return actionPath;
}
/**
* @param actionPath
*/
public void setActionPath(String actionPath) {
this.actionPath = actionPath;
}
/**
* @return the bundle
*/
public String getBundle() {
return bundle;
}
/**
* @param bundle
*/
public void setBundle(String bundle) {
this.bundle = bundle;
}
/**
* @return the description key
*/
public String getDescriptionKey() {
return descriptionKey;
}
/**
* @param descriptionKey
*/
public void setDescriptionKey(String descriptionKey) {
this.descriptionKey = descriptionKey;
}
/**
* @return the nameKey
*/
public String getNameKey() {
return nameKey;
}
/**
* @param nameKey
*/
public void setNameKey(String nameKey) {
this.nameKey = nameKey;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -