mirror of https://github.com/apache/ant-ivy
add a name and a description for documentation purpose
git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484150 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3091e264b0
commit
ee81f287f6
|
|
@ -7,8 +7,12 @@
|
|||
package fr.jayasoft.ivy.namespace;
|
||||
|
||||
public class NamespaceRule {
|
||||
private String _name;
|
||||
private String _description;
|
||||
|
||||
private MRIDTransformationRule _fromSystem;
|
||||
private MRIDTransformationRule _toSystem;
|
||||
|
||||
public MRIDTransformationRule getFromSystem() {
|
||||
return _fromSystem;
|
||||
}
|
||||
|
|
@ -27,4 +31,16 @@ public class NamespaceRule {
|
|||
}
|
||||
_toSystem = toSystem;
|
||||
}
|
||||
public String getDescription() {
|
||||
return _description;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
_description = description;
|
||||
}
|
||||
public String getName() {
|
||||
return _name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
_name = name;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue