mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
* Build-Date is now more human-friendly * TODO updated git-svn-id: https://ipscan.svn.sourceforge.net/svnroot/ipscan/trunk@205 375186e5-ef17-0410-b0b6-91563547dcda
65 lines
985 B
Java
65 lines
985 B
Java
package net.sourceforge.jarbundler;
|
|
|
|
public class JavaProperty {
|
|
|
|
/** The JavaProperties' name and value */
|
|
|
|
private String name = null;
|
|
private String value = null;
|
|
|
|
/**
|
|
* Construct an empty JavaProperty
|
|
*/
|
|
|
|
public JavaProperty() {
|
|
}
|
|
|
|
/**
|
|
* Set the JavaProperties's name; required
|
|
*
|
|
* @param name
|
|
* the JavaProperties' name
|
|
*/
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
/**
|
|
* Get the JavaProperties' name
|
|
*
|
|
* @return the JavaProperties' name.
|
|
*/
|
|
public String getName() {
|
|
|
|
if (this.name == null)
|
|
return null;
|
|
|
|
return this.name.trim();
|
|
}
|
|
|
|
/**
|
|
* Set the JavaProperties' value; required
|
|
*
|
|
* @param value
|
|
* the JavaProperties' value
|
|
*/
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
/**
|
|
* Get the JavaProperties' value.
|
|
*
|
|
* @return the JavaProperties' value.
|
|
*/
|
|
public String getValue() {
|
|
|
|
if (this.value == null)
|
|
return null;
|
|
|
|
return this.value.trim();
|
|
}
|
|
|
|
}
|