
com.dakuupa.struts.dto.KeyValuePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of struts2-crud-template Show documentation
Show all versions of struts2-crud-template Show documentation
Provides Struts 2 developers with easy to use framework for building CRUD (Create, read, update, delete) applications using convention over
configuration. Includes several utility classes to facilitate quick Struts 2 app development.
The newest version!
package com.dakuupa.struts.dto;
/**
*
* @author ETWilliams
*/
public class KeyValuePair {
String key;
String displayName;
public KeyValuePair(String key, String displayName) {
this.key = key;
this.displayName = displayName;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy