ipscan/ext/mac-jarbundler/src/net/sourceforge/jarbundler/JavaProperty.java
angryziber 1b428b1074 * Mac build implemented (as app in a zip), not tested yet
* 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
2007-08-25 15:31:59 +00:00

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();
}
}