package com.perforce.common.schema;
public class Attribute {
private String name;
private Domain domain;
public Attribute(String name, Domain domain) {
this.name = name;
this.domain = domain;
}
public Domain getDomain() {
return domain;
}
public String getName() {
return name;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
else {
if (o.getClass() == getClass()) {
Attribute other = (Attribute) o;
return (other.name.equals(name));
}
}
return false;
}
public String toString() {
return name + "(" + domain + ")";
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
13876 |
Paul Allen |
Rename/move file(s) |
|
|
//guest/paul_allen/p4convert-maven/src/com/perforce/common/schema/Attribute.java |
#1
|
13873 |
Paul Allen |
Branching using p4convert-maven |
|
|
//guest/perforce_software/p4convert/src/com/perforce/common/schema/Attribute.java |
#1
|
9807 |
Paul Allen |
Initial import of p4-convert (from change 894340) |
|
|